Commit 0c11b8fb by Nicola Pero Committed by Nicola Pero

In libobjc/:

       * archive.c: Removed not needed includes.
       * class.c: Same change.
       * hash.c: Same change.
       * misc.c: Same change.
       * nil_method.c: Same change.
       * objects.c: Same change.
       * sarray.c: Same change.
       * sendmsg.c: Same change.
       * thr.c: Same change.

From-SVN: r164214
parent a19fac96
2010-09-11 Nicola Pero <nicola.pero@meta-innovation.com> 2010-09-11 Nicola Pero <nicola.pero@meta-innovation.com>
* archive.c: Removed not needed includes.
* class.c: Same change.
* hash.c: Same change.
* misc.c: Same change.
* nil_method.c: Same change.
* objects.c: Same change.
* sarray.c: Same change.
* sendmsg.c: Same change.
* thr.c: Same change.
2010-09-11 Nicola Pero <nicola.pero@meta-innovation.com>
* objc/runtime.h: Moved to objc-private/runtime.h. Do not include * objc/runtime.h: Moved to objc-private/runtime.h. Do not include
all the objc/*.h files. all the objc/*.h files.
* objc-private/runtime.h: New file. * objc-private/runtime.h: New file.
......
...@@ -25,7 +25,6 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see ...@@ -25,7 +25,6 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
#include "tconfig.h" #include "tconfig.h"
#include "objc/objc.h" #include "objc/objc.h"
#include "objc/objc-api.h" #include "objc/objc-api.h"
#include "objc/thr.h"
#include "objc/hash.h" #include "objc/hash.h"
#include "objc/objc-list.h" #include "objc/objc-list.h"
#include "objc-private/runtime.h" #include "objc-private/runtime.h"
......
...@@ -90,10 +90,7 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see ...@@ -90,10 +90,7 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
#include "objc/objc.h" #include "objc/objc.h"
#include "objc/objc-api.h" #include "objc/objc-api.h"
#include "objc/thr.h" #include "objc/thr.h"
#include "objc/hash.h"
#include "objc/objc-list.h"
#include "objc-private/runtime.h" /* the kitchen sink */ #include "objc-private/runtime.h" /* the kitchen sink */
#include "objc/sarray.h"
/* We use a table which maps a class name to the corresponding class /* We use a table which maps a class name to the corresponding class
* pointer. The first part of this file defines this table, and * pointer. The first part of this file defines this table, and
......
...@@ -26,9 +26,7 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see ...@@ -26,9 +26,7 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
#include "objc/objc.h" #include "objc/objc.h"
#include "objc/objc-api.h" #include "objc/objc-api.h"
#include "objc/thr.h"
#include "objc/hash.h" #include "objc/hash.h"
#include "objc/objc-list.h"
#include "objc-private/runtime.h" /* for DEBUG_PRINTF */ #include "objc-private/runtime.h" /* for DEBUG_PRINTF */
/* These two macros determine when a hash table is full and /* These two macros determine when a hash table is full and
......
...@@ -29,9 +29,6 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see ...@@ -29,9 +29,6 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
#include <stdlib.h> #include <stdlib.h>
#include "objc/objc.h" #include "objc/objc.h"
#include "objc/objc-api.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-private/runtime.h"
/* /*
......
...@@ -27,11 +27,6 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see ...@@ -27,11 +27,6 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
of a method is nil */ of a method is nil */
#include "objc/objc.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"
/* When the receiver of a method invocation is nil, the runtime /* When the receiver of a method invocation is nil, the runtime
returns nil_method() as the method implementation. This function returns nil_method() as the method implementation. This function
......
...@@ -26,9 +26,6 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see ...@@ -26,9 +26,6 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
#include "tconfig.h" /* include defs of bzero for target */ #include "tconfig.h" /* include defs of bzero for target */
#include "objc/objc.h" #include "objc/objc.h"
#include "objc/objc-api.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 kitchen sink */ #include "objc-private/runtime.h" /* the kitchen sink */
#if OBJC_WITH_GC #if OBJC_WITH_GC
......
...@@ -27,8 +27,6 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see ...@@ -27,8 +27,6 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
#include "objc/objc.h" #include "objc/objc.h"
#include "objc/objc-api.h" #include "objc/objc-api.h"
#include "objc/thr.h" #include "objc/thr.h"
#include "objc/hash.h"
#include "objc/objc-list.h"
#include "objc-private/runtime.h" #include "objc-private/runtime.h"
#include <stdio.h> #include <stdio.h>
#include "assert.h" #include "assert.h"
......
...@@ -34,8 +34,6 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see ...@@ -34,8 +34,6 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
#include "objc/objc.h" #include "objc/objc.h"
#include "objc/objc-api.h" #include "objc/objc-api.h"
#include "objc/thr.h" #include "objc/thr.h"
#include "objc/hash.h"
#include "objc/objc-list.h"
#include "objc-private/runtime.h" #include "objc-private/runtime.h"
#include "objc/sarray.h" #include "objc/sarray.h"
#include "objc/encoding.h" #include "objc/encoding.h"
......
...@@ -38,8 +38,6 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see ...@@ -38,8 +38,6 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
#include "objc/thr.h" #include "objc/thr.h"
#include "objc/objc.h" #include "objc/objc.h"
#include "objc/objc-api.h" #include "objc/objc-api.h"
#include "objc/hash.h"
#include "objc/objc-list.h"
#include "objc-private/runtime.h" #include "objc-private/runtime.h"
#include <gthr.h> #include <gthr.h>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment