aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorJim Wilson <wilson@gcc.gnu.org>1994-03-31 21:50:23 -0800
committerJim Wilson <wilson@gcc.gnu.org>1994-03-31 21:50:23 -0800
commitd2a1b32f573d4f5a97457817a7dc9b30c8a5a8f6 (patch)
tree3cd1b7743c65974b0fbaf6f3b75299ff6650093f /gcc
parentdd96f41cc763507e49459a55e59a1199e97069d8 (diff)
downloadgcc-d2a1b32f573d4f5a97457817a7dc9b30c8a5a8f6.zip
gcc-d2a1b32f573d4f5a97457817a7dc9b30c8a5a8f6.tar.gz
gcc-d2a1b32f573d4f5a97457817a7dc9b30c8a5a8f6.tar.bz2
Delete use of IN_GCC to control stddef.h/gstddef.h include.
From-SVN: r6948
Diffstat (limited to 'gcc')
-rw-r--r--gcc/objc/hash.h6
-rw-r--r--gcc/objc/objc.h6
-rw-r--r--gcc/objc/sarray.h6
3 files changed, 3 insertions, 15 deletions
diff --git a/gcc/objc/hash.h b/gcc/objc/hash.h
index 2b9ea24..0234e2e 100644
--- a/gcc/objc/hash.h
+++ b/gcc/objc/hash.h
@@ -27,11 +27,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
#ifndef __hash_INCLUDE_GNU
#define __hash_INCLUDE_GNU
-#ifdef IN_GCC
-#include "gstddef.h"
-#else
-#include "stddef.h"
-#endif
+#include <stddef.h>
/*
* This data structure is used to hold items
diff --git a/gcc/objc/objc.h b/gcc/objc/objc.h
index 6f0f3ae..a777a9f 100644
--- a/gcc/objc/objc.h
+++ b/gcc/objc/objc.h
@@ -30,11 +30,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
extern "C" {
#endif
-#ifdef IN_GCC
-#include "gstddef.h"
-#else
-#include "stddef.h"
-#endif
+#include <stddef.h>
/*
** Definition of the boolean type.
diff --git a/gcc/objc/sarray.h b/gcc/objc/sarray.h
index 05d28ce..733c40c 100644
--- a/gcc/objc/sarray.h
+++ b/gcc/objc/sarray.h
@@ -39,11 +39,7 @@ extern const char* __objc_sparse2_id;
extern const char* __objc_sparse3_id;
#endif
-#ifdef IN_GCC
-#include "gstddef.h"
-#else
-#include "stddef.h"
-#endif
+#include <stddef.h>
extern int nbuckets; /* for stats */
extern int nindices;