summaryrefslogtreecommitdiffstats
path: root/isys/gzlib/lzw.c
diff options
context:
space:
mode:
Diffstat (limited to 'isys/gzlib/lzw.c')
-rw-r--r--isys/gzlib/lzw.c27
1 files changed, 0 insertions, 27 deletions
diff --git a/isys/gzlib/lzw.c b/isys/gzlib/lzw.c
deleted file mode 100644
index 0dc2fe063..000000000
--- a/isys/gzlib/lzw.c
+++ /dev/null
@@ -1,27 +0,0 @@
-/* lzw.c -- compress files in LZW format.
- * This is a dummy version avoiding patent problems.
- */
-
-#ifdef RCSID
-static char rcsid[] = "$Id$";
-#endif
-
-#include <config.h>
-#include "tailor.h"
-#include "gzip.h"
-#include "lzw.h"
-
-static int msg_done = 0;
-
-/* Compress in to out with lzw method. */
-int lzw(in, out)
- int in, out;
-{
- if (msg_done) return ERROR;
- msg_done = 1;
- fprintf(stderr,"output in compress .Z format not supported\n");
- if (in != out) { /* avoid warnings on unused variables */
- exit_code = ERROR;
- }
- return ERROR;
-}