[pypy-svn] r48670 - pypy/dist/pypy/translator/c/src

fijal at codespeak.net fijal at codespeak.net
Wed Nov 14 01:32:40 CET 2007


Author: fijal
Date: Wed Nov 14 01:32:39 2007
New Revision: 48670

Modified:
   pypy/dist/pypy/translator/c/src/ll_strtod.h
Log:
Make sure we don't include this file twice


Modified: pypy/dist/pypy/translator/c/src/ll_strtod.h
==============================================================================
--- pypy/dist/pypy/translator/c/src/ll_strtod.h	(original)
+++ pypy/dist/pypy/translator/c/src/ll_strtod.h	Wed Nov 14 01:32:39 2007
@@ -1,3 +1,6 @@
+#ifndef LL_STRTOD_H
+#define LL_STRTOD_H
+
 #include <locale.h>
 #include <ctype.h>
 #include <string.h>
@@ -5,6 +8,7 @@
 #include <stdio.h>
 #include <errno.h>
 
+
 /* prototypes */
 
 double LL_strtod_parts_to_float(char *sign, char *beforept,
@@ -124,3 +128,4 @@
 }
 
 #endif /* PYPY_NOT_MAIN_FILE */
+#endif



More information about the Pypy-commit mailing list