]> gcc.gnu.org Git - gcc.git/commitdiff
Delete use of IN_GCC to control stddef.h/gstddef.h include.
authorJim Wilson <wilson@gcc.gnu.org>
Fri, 1 Apr 1994 05:50:23 +0000 (21:50 -0800)
committerJim Wilson <wilson@gcc.gnu.org>
Fri, 1 Apr 1994 05:50:23 +0000 (21:50 -0800)
From-SVN: r6948

gcc/objc/hash.h
gcc/objc/objc.h
gcc/objc/sarray.h

index 2b9ea249a7e193e395744b21cf46485ed8108c44..0234e2e1dce5d6813ba9a567cae469cdaeb9ca77 100644 (file)
@@ -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
index 6f0f3aedfd18fd06121119fd90fe3b98cad92012..a777a9f90b576ce5a01adf3fb0cea5a58fe76f42 100644 (file)
@@ -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.  
index 05d28cea8b0c737d895a590989706f156cb8f189..733c40cc8cd4eb055bf4d1f2c28b3986b2be9dee 100644 (file)
@@ -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;
This page took 0.064152 seconds and 5 git commands to generate.