Author: paultcochrane
Date: Thu Jul  5 13:30:59 2007
New Revision: 19626

Modified:
   branches/splint/src/pmc/bigint.pmc

Log:
[src] Wrapping gmp.h inside an #ifndef S_SPLINT_S to try to get splint
processing further.


Modified: branches/splint/src/pmc/bigint.pmc
==============================================================================
--- branches/splint/src/pmc/bigint.pmc  (original)
+++ branches/splint/src/pmc/bigint.pmc  Thu Jul  5 13:30:59 2007
@@ -29,7 +29,9 @@
  */
 
 #ifdef PARROT_HAS_GMP
-#  include <gmp.h>
+#  ifndef S_SPLINT_S
+#    include <gmp.h>
+#  endif
 typedef struct BIGINT {
     mpz_t b;
 } BIGINT;

Reply via email to