diff options
author | Kresten Krab Thorup <krab@gcc.gnu.org> | 1993-04-26 07:39:32 +0000 |
---|---|---|
committer | Kresten Krab Thorup <krab@gcc.gnu.org> | 1993-04-26 07:39:32 +0000 |
commit | c4558090146c85ed9551097cc7ddd9664b234950 (patch) | |
tree | 03a2fb05050c3812cd8e751fe806e812514803a7 /gcc | |
parent | a1d7405ce09d4867eee0d379a6e0d57f7d808cbc (diff) | |
download | gcc-c4558090146c85ed9551097cc7ddd9664b234950.zip gcc-c4558090146c85ed9551097cc7ddd9664b234950.tar.gz gcc-c4558090146c85ed9551097cc7ddd9664b234950.tar.bz2 |
Updated to use the above IN_OBJC
From-SVN: r4231
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/objc/objc.h | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/gcc/objc/objc.h b/gcc/objc/objc.h index 972fe76..ea6c1ad 100644 --- a/gcc/objc/objc.h +++ b/gcc/objc/objc.h @@ -42,9 +42,12 @@ extern const char* __objc_hash_lookup_id; #endif -#include <stdarg.h> #include <stdio.h> - +#ifdef IN_OBJC +#include <gstdarg.h> +#else +#include <stdarg.h> +#endif #define nil (id)0 /* id of Nil instance */ #define Nil (Class_t)0 /* id of Nil class */ @@ -233,7 +236,7 @@ typedef struct objc_method_list { } MethodList, *MethodList_t; -#include <objc/sarray.h> +#include "objc/sarray.h" #ifdef OBJC_HASH_LOOKUP @@ -465,7 +468,7 @@ static id nil_method(id rcv, SEL op, ...) { return rcv; } #ifdef OBJC_HASH_LOOKUP -#include <objc/cache.h> +#include "objc/cache.h" extern __inline__ IMP objc_msg_lookup(id receiver, SEL op) |