summaryrefslogtreecommitdiff
path: root/Objective-C/JIGS/ObjcRuntimeUtilities.h
diff options
context:
space:
mode:
authorMatthias Benkard <code@mail.matthias.benkard.de>2008-01-28 20:16:27 +0100
committerMatthias Benkard <code@mail.matthias.benkard.de>2008-01-28 20:16:27 +0100
commitf955a86f64289de63702bd03f4d6d7fdec9dff1b (patch)
treecab896469b2bd1d653fe6231e64934ecbae23829 /Objective-C/JIGS/ObjcRuntimeUtilities.h
parentcc96561d0c9a2a8e8e00c0c6dec63ea41da54770 (diff)
Add GNU runtime guards to the files imported from JIGS.
darcs-hash:4b8ebfe2f636c1515b99d4138075df0ad4e8a5e1
Diffstat (limited to 'Objective-C/JIGS/ObjcRuntimeUtilities.h')
-rw-r--r--Objective-C/JIGS/ObjcRuntimeUtilities.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/Objective-C/JIGS/ObjcRuntimeUtilities.h b/Objective-C/JIGS/ObjcRuntimeUtilities.h
index 563a43d..5096293 100644
--- a/Objective-C/JIGS/ObjcRuntimeUtilities.h
+++ b/Objective-C/JIGS/ObjcRuntimeUtilities.h
@@ -23,6 +23,10 @@
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
*/
+/* FIXME: This should be something like a simple #ifndef
+ __NEXT_RUNTIME__, but __NEXT_RUNTIME__ isn't defined in C code. */
+#if !defined(__NEXT_RUNTIME__) && !defined(__APPLE__)
+
#ifndef __ObjcRuntimeUtilities_h_GNUSTEP_JAVA_INCLUDE
#define __ObjcRuntimeUtilities_h_GNUSTEP_JAVA_INCLUDE
@@ -169,3 +173,4 @@ const char *ObjcUtilities_build_runtime_Objc_signature (const char *);
void ObjcUtilities_register_method_list (Class class, MethodList *ml);
#endif /* __ObjcRuntimeUtilitis_h_GNUSTEP_JAVA_INCLUDE */
+#endif