diff options
author | Andrew Pinski <pinskia@physics.uc.edu> | 2004-08-13 22:23:58 +0000 |
---|---|---|
committer | Andrew Pinski <pinskia@gcc.gnu.org> | 2004-08-13 15:23:58 -0700 |
commit | 9567d4155997ebed75a9a2f4a24a6655d9f0ecb4 (patch) | |
tree | 6c7cd07c644a9bd9f7ec3a585f20d6678febe490 /libobjc/objc/runtime.h | |
parent | d7945fafe30409970df153ece1ad881776a49747 (diff) | |
download | gcc-9567d4155997ebed75a9a2f4a24a6655d9f0ecb4.zip gcc-9567d4155997ebed75a9a2f4a24a6655d9f0ecb4.tar.gz gcc-9567d4155997ebed75a9a2f4a24a6655d9f0ecb4.tar.bz2 |
Object.h: Move includes out of extern "C" blocks.
2004-08-13 Andrew Pinski <pinskia@physics.uc.edu>
* objc/Object.h: Move includes out of extern "C" blocks.
* objc/encoding.h: Likewise.
* objc/hash.h: Likewise.
* objc/objc-api.h: Likewise.
* objc/runtime.h: Likewise.
* objc/sarray.h: Likewise.
* objc/typedstream.h: Likewise.
From-SVN: r85968
Diffstat (limited to 'libobjc/objc/runtime.h')
-rw-r--r-- | libobjc/objc/runtime.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/libobjc/objc/runtime.h b/libobjc/objc/runtime.h index 91e16a2..f961281 100644 --- a/libobjc/objc/runtime.h +++ b/libobjc/objc/runtime.h @@ -26,6 +26,14 @@ 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 <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 */ @@ -38,14 +46,6 @@ Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ 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) */ extern void __objc_init_class_tables(void); /* (objc-class.c) */ |