From d2a1b32f573d4f5a97457817a7dc9b30c8a5a8f6 Mon Sep 17 00:00:00 2001 From: Jim Wilson Date: Thu, 31 Mar 1994 21:50:23 -0800 Subject: [PATCH] Delete use of IN_GCC to control stddef.h/gstddef.h include. From-SVN: r6948 --- gcc/objc/hash.h | 6 +----- gcc/objc/objc.h | 6 +----- gcc/objc/sarray.h | 6 +----- 3 files changed, 3 insertions(+), 15 deletions(-) diff --git a/gcc/objc/hash.h b/gcc/objc/hash.h index 2b9ea249a7e..0234e2e1dce 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 /* * This data structure is used to hold items diff --git a/gcc/objc/objc.h b/gcc/objc/objc.h index 6f0f3aedfd1..a777a9f90b5 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 /* ** Definition of the boolean type. diff --git a/gcc/objc/sarray.h b/gcc/objc/sarray.h index 05d28cea8b0..733c40cc8cd 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 extern int nbuckets; /* for stats */ extern int nindices; -- 2.30.2