X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=lzw.h;h=ffc451dda7780411912f03e575c2b266d45e655e;hb=92249085071a973e2c0621b0415b93d2e48bb00d;hp=69c479c49423f39737639499a1caea0f319407e5;hpb=c7e61475680fa226bd9b8bdd469cd66914e630f5;p=debian%2Fgzip diff --git a/lzw.h b/lzw.h index 69c479c..ffc451d 100644 --- a/lzw.h +++ b/lzw.h @@ -1,5 +1,6 @@ /* lzw.h -- define the lzw functions. + Copyright (C) 1994-2018 Free Software Foundation, Inc. Copyright (C) 1992-1993 Jean-loup Gailly. This program is free software; you can redistribute it and/or modify @@ -16,10 +17,6 @@ along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ -#if !defined(OF) && defined(lint) -# include "gzip.h" -#endif - #ifndef BITS # define BITS 16 #endif @@ -50,5 +47,5 @@ extern int maxbits; /* max bits per code for LZW */ extern int block_mode; /* block compress mode -C compatible with 2.0 */ -extern int lzw OF((int in, int out)); -extern int unlzw OF((int in, int out)); +extern int lzw (int in, int out); +extern int unlzw (int in, int out);