Revision: 277
http://svn.sourceforge.net/substrate/?rev=277&view=rev
Author: landonf
Date: 2006-08-31 00:00:37 -0700 (Thu, 31 Aug 2006)
Log Message:
-----------
Let's try this without pulling in Obj-C into the C file
Modified Paths:
--------------
trunk/Foundation/LFHash.c
Modified: trunk/Foundation/LFHash.c
===================================================================
--- trunk/Foundation/LFHash.c 2006-08-31 06:51:41 UTC (rev 276)
+++ trunk/Foundation/LFHash.c 2006-08-31 07:00:37 UTC (rev 277)
@@ -46,6 +46,14 @@
#include <config.h>
#endif
+#ifdef HAVE_STDINT_H
+#include <stdint.h>
+#endif
+
+#ifdef HAVE_INTTYPES_H
+#include <inttypes.h>
+#endif
+
#include <stdio.h>
#include <stddef.h>
#include <stdlib.h>
@@ -53,7 +61,6 @@
#include <sys/types.h>
#include <sys/param.h>
-#include <Foundation/LFObjCRuntime.h>
/*
* My best guess at if you are big-endian or little-endian. This may
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|