/* Kludge-o error() function to fill in gaps in gnu compress */
#include <stdio.h>
void
error(txt)
 char *txt;
 {
 fprintf(stderr,"%s",txt);
 exit(0);
 }
