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/init.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/init.c')
-rw-r--r-- | libobjc/init.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/libobjc/init.c b/libobjc/init.c index 138f9077472..ea6ab38569e 100644 --- a/libobjc/init.c +++ b/libobjc/init.c @@ -24,7 +24,12 @@ a copy of the GCC Runtime Library Exception along with this program; see the files COPYING3 and COPYING.RUNTIME respectively. If not, see <http://www.gnu.org/licenses/>. */ -#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" /* The version number of this runtime. This must match the number defined in gcc (objc-act.c). */ |