diff options
author | nicola <nicola@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-09-11 12:58:27 +0000 |
---|---|---|
committer | nicola <nicola@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-09-11 12:58:27 +0000 |
commit | 88457013de8a01d5346b15f25de9ee7bcc9a9311 (patch) | |
tree | 16546ea895990a00127d9bea6e85a7b88b99854e /libobjc/misc.c | |
parent | 344bfd093394bbfd16bfc4614972d6577b6413a8 (diff) | |
download | gcc-88457013de8a01d5346b15f25de9ee7bcc9a9311.tar.gz |
In libobjc/:
* objc/runtime.h: Moved to objc-private/runtime.h. Do not include
all the objc/*.h files.
* objc-private/runtime.h: New file.
* archive.c: Include objc-private/runtime.h (and required objc/*.h
files) instead of objc/runtime.h.
* class.c: Same change.
* hash.c: Same change.
* init.c: Same change.
* misc.c: Same change.
* nil_method.c: Same change.
* objects.c: Same change.
* sarray.c: Same change.
* selector.c: Same change.
* sendmsg.c: Same change.
* thr.c: Same change.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@164213 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libobjc/misc.c')
-rw-r--r-- | libobjc/misc.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/libobjc/misc.c b/libobjc/misc.c index ab7f568ebc0..987acfc2e20 100644 --- a/libobjc/misc.c +++ b/libobjc/misc.c @@ -27,7 +27,12 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see #define __USE_FIXED_PROTOTYPES__ #include <stdlib.h> -#include "objc/runtime.h" +#include "objc/objc.h" +#include "objc/objc-api.h" +#include "objc/thr.h" +#include "objc/hash.h" +#include "objc/objc-list.h" +#include "objc-private/runtime.h" /* ** Error handler function |