diff options
Diffstat (limited to 'libobjc/objc/runtime.h')
-rw-r--r-- | libobjc/objc/runtime.h | 28 |
1 files changed, 12 insertions, 16 deletions
diff --git a/libobjc/objc/runtime.h b/libobjc/objc/runtime.h index d4179f2..91e16a2 100644 --- a/libobjc/objc/runtime.h +++ b/libobjc/objc/runtime.h @@ -26,26 +26,25 @@ Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifndef __objc_runtime_INCLUDE_GNU #define __objc_runtime_INCLUDE_GNU -#include <stdarg.h> /* for varargs and va_list's */ - -#include <stdio.h> -#include <ctype.h> +#include <objc/objc.h> /* core data types */ +#include <objc/objc-api.h> /* runtime api functions */ -#include <stddef.h> /* so noone else will get system versions */ -#include "assert.h" - -#include "objc/objc.h" /* core data types */ -#include "objc/objc-api.h" /* runtime api functions */ +#include <objc/thr.h> /* thread and mutex support */ -#include "objc/thr.h" /* thread and mutex support */ - -#include "objc/hash.h" /* hash structures */ -#include "objc/objc-list.h" /* linear lists */ +#include <objc/hash.h> /* hash structures */ +#include <objc/objc-list.h> /* linear lists */ #ifdef __cplusplus extern "C" { #endif /* __cplusplus */ +#include <stdarg.h> /* for varargs and va_list's */ + +#include <stdio.h> +#include <ctype.h> + +#include <stddef.h> /* so noone else will get system versions */ +#include <assert.h> extern void __objc_add_class_to_hash(Class); /* (objc-class.c) */ extern void __objc_init_selector_tables(void); /* (objc-sel.c) */ @@ -94,7 +93,4 @@ extern void __objc_generate_gc_type_description (Class); } #endif /* __cplusplus */ - #endif /* not __objc_runtime_INCLUDE_GNU */ - - |