X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=lzw.h;h=7f7813419632e4a4ec2d82ab2eea9b92d0041d5a;hb=db56e4b64faab661f153c0e6a2f9239edd955b0c;hp=3ac23e1363cd838459ca2da2f666b0e8d22d1d6b;hpb=0d5a754ba8f2cc33e98d48d559f0ad6cd18a43a3;p=debian%2Fgzip diff --git a/lzw.h b/lzw.h index 3ac23e1..7f78134 100644 --- a/lzw.h +++ b/lzw.h @@ -4,7 +4,7 @@ This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2, or (at your option) + the Free Software Foundation; either version 3, or (at your option) any later version. This program is distributed in the hope that it will be useful, @@ -16,10 +16,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 +46,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);