diff options
author | Nicola Pero <nicola.pero@meta-innovation.com> | 2010-09-11 12:58:27 +0000 |
---|---|---|
committer | Nicola Pero <nicola@gcc.gnu.org> | 2010-09-11 12:58:27 +0000 |
commit | a19fac96a2f50a673543ec79d8bce42d63df6d8f (patch) | |
tree | 16546ea895990a00127d9bea6e85a7b88b99854e /libobjc/selector.c | |
parent | 3d0d87390b1aad25556c927130ef0ec6890439e8 (diff) | |
download | gcc-a19fac96a2f50a673543ec79d8bce42d63df6d8f.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.
From-SVN: r164213
Diffstat (limited to 'libobjc/selector.c')
-rw-r--r-- | libobjc/selector.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/libobjc/selector.c b/libobjc/selector.c index 226ef7db310..1b611419da7 100644 --- a/libobjc/selector.c +++ b/libobjc/selector.c @@ -23,7 +23,12 @@ 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" #include "objc/sarray.h" #include "objc/encoding.h" |