From: Fabian Keil Date: Sat, 22 Sep 2007 16:17:19 +0000 (+0000) Subject: Move our includes below system includes to prevent macro conflicts. X-Git-Tag: v_3_0_7~148 X-Git-Url: http://www.privoxy.org/gitweb/?p=privoxy.git;a=commitdiff_plain;h=c180f38183fb89876767ae57322d1792f8a632cb Move our includes below system includes to prevent macro conflicts. --- diff --git a/pcrs.c b/pcrs.c index def095da..a6c521af 100644 --- a/pcrs.c +++ b/pcrs.c @@ -1,4 +1,4 @@ -const char pcrs_rcs[] = "$Id: pcrs.c,v 1.27 2007/08/05 13:47:04 fabiankeil Exp $"; +const char pcrs_rcs[] = "$Id: pcrs.c,v 1.28 2007/08/18 14:37:27 fabiankeil Exp $"; /********************************************************************* * * File : $Source: /cvsroot/ijbswa/current/pcrs.c,v $ @@ -37,6 +37,9 @@ const char pcrs_rcs[] = "$Id: pcrs.c,v 1.27 2007/08/05 13:47:04 fabiankeil Exp $ * * Revisions : * $Log: pcrs.c,v $ + * Revision 1.28 2007/08/18 14:37:27 fabiankeil + * Ditch hex_to_byte() in favour of xtoi(). + * * Revision 1.27 2007/08/05 13:47:04 fabiankeil * #1763173 from Stefan Huehner: s@const static@static const@. * @@ -180,6 +183,10 @@ const char pcrs_rcs[] = "$Id: pcrs.c,v 1.27 2007/08/05 13:47:04 fabiankeil Exp $ *********************************************************************/ +#include +#include +#include + /* * Include project.h just so that the right pcre.h gets * included from there @@ -191,10 +198,6 @@ const char pcrs_rcs[] = "$Id: pcrs.c,v 1.27 2007/08/05 13:47:04 fabiankeil Exp $ /* For xtoi */ #include "encode.h" -#include -#include -#include - #include "pcrs.h" const char pcrs_h_rcs[] = PCRS_H_VERSION;