]> gcc.gnu.org Git - gcc.git/commitdiff
Conditionally include gstddef or stddef
authorKresten Krab Thorup <krab@gcc.gnu.org>
Sun, 9 May 1993 13:08:15 +0000 (13:08 +0000)
committerKresten Krab Thorup <krab@gcc.gnu.org>
Sun, 9 May 1993 13:08:15 +0000 (13:08 +0000)
From-SVN: r4396

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

index ae42e85158e7f8261dbf5cd22a87ab8bc93e12fa..e054e7d03aa945b734a9d80cd5d591224591eedc 100644 (file)
@@ -27,7 +27,11 @@ 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
 
 /*
  * This data structure is used to hold items
index fef1025c95cd2f474e1c29fcb89be6b36b5df762..7e18aca180897fbcc25cbb47fb51e25408f8692a 100644 (file)
@@ -30,7 +30,11 @@ 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
 
 /*
 ** Definition of the boolean type.  
index 9e2c27be71b1add890859e236a80a2655deecf5c..d43c6ee2bb4f2ed91b9b9e398270a5fd7e756a70 100644 (file)
@@ -39,7 +39,11 @@ extern const char* __objc_sparse2_id;
 extern const char* __objc_sparse3_id;
 #endif
 
+#ifdef IN_GCC
 #include "gstddef.h"
+#else
+#include "stddef.h"
+#endif
 
 extern int nbuckets;           /* for stats */
 extern int nindices;
This page took 0.062111 seconds and 5 git commands to generate.