diff options
Diffstat (limited to 'libobjc/class.c')
-rw-r--r-- | libobjc/class.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/libobjc/class.c b/libobjc/class.c index 58f2319..f3bb07b 100644 --- a/libobjc/class.c +++ b/libobjc/class.c @@ -87,12 +87,13 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see classes from the table - and the difficult thing with lock-free data structures is freeing data when is removed from the structures. */ -#include "objc/runtime.h" /* the kitchen sink */ -#include "objc/sarray.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 kitchen sink */ +#include "objc/sarray.h" /* We use a table which maps a class name to the corresponding class * pointer. The first part of this file defines this table, and |