Move our includes below system includes to prevent macro conflicts.
authorFabian Keil <fk@fabiankeil.de>
Sat, 22 Sep 2007 16:17:19 +0000 (16:17 +0000)
committerFabian Keil <fk@fabiankeil.de>
Sat, 22 Sep 2007 16:17:19 +0000 (16:17 +0000)
pcrs.c

diff --git a/pcrs.c b/pcrs.c
index def095d..a6c521a 100644 (file)
--- 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 $
  *********************************************************************/
 \f
 
+#include <string.h>
+#include <ctype.h>
+#include <assert.h>
+
 /*
  * 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 <string.h>
-#include <ctype.h>
-#include <assert.h>
-
 #include "pcrs.h"
 
 const char pcrs_h_rcs[] = PCRS_H_VERSION;