From: jongfoster Date: Sat, 22 Sep 2001 16:32:28 +0000 (+0000) Subject: Removing unused #includes. X-Git-Tag: v_2_9_9~47 X-Git-Url: http://www.privoxy.org/gitweb/?a=commitdiff_plain;h=61a82b739cf29175d352241117a13f35e999f305;p=privoxy.git Removing unused #includes. --- diff --git a/parsers.c b/parsers.c index 50539f06..538a0f25 100644 --- a/parsers.c +++ b/parsers.c @@ -1,4 +1,4 @@ -const char parsers_rcs[] = "$Id: parsers.c,v 1.26 2001/09/16 17:05:14 jongfoster Exp $"; +const char parsers_rcs[] = "$Id: parsers.c,v 1.27 2001/09/20 15:45:25 steudten Exp $"; /********************************************************************* * * File : $Source: /cvsroot/ijbswa/current/parsers.c,v $ @@ -41,6 +41,11 @@ const char parsers_rcs[] = "$Id: parsers.c,v 1.26 2001/09/16 17:05:14 jongfoster * * Revisions : * $Log: parsers.c,v $ + * Revision 1.27 2001/09/20 15:45:25 steudten + * + * add casting from size_t to int for printf() + * remove local variable shadow s2 + * * Revision 1.26 2001/09/16 17:05:14 jongfoster * Removing unused #include showarg.h * @@ -231,10 +236,13 @@ const char parsers_rcs[] = "$Id: parsers.c,v 1.26 2001/09/16 17:05:14 jongfoster #include "config.h" +#ifndef _WIN32 #include #include #include #include +#endif + #include #ifndef _WIN32 @@ -245,14 +253,10 @@ const char parsers_rcs[] = "$Id: parsers.c,v 1.26 2001/09/16 17:05:14 jongfoster #include "list.h" #include "parsers.h" #include "encode.h" -#include "filters.h" -#include "loaders.h" -#include "jcc.h" #include "ssplit.h" #include "errlog.h" #include "jbsockets.h" #include "miscutil.h" -#include "cgi.h" const char parsers_h_rcs[] = PARSERS_H_VERSION;