OSDN Git Service

Handle VxWorks typedef macros
[pf3gnuchains/gcc-fork.git] / gcc / ginclude / stddef.h
1 #ifndef _STDDEF_H
2 #ifndef _STDDEF_H_
3 #ifndef _ANSI_STDDEF_H
4 #ifndef __STDDEF_H__
5
6 /* Any one of these symbols __need_* means that GNU libc
7    wants us just to define one data type.  So don't define
8    the symbols that indicate this file's entire job has been done.  */
9 #if (!defined(__need_wchar_t) && !defined(__need_size_t)        \
10      && !defined(__need_ptrdiff_t) && !defined(__need_NULL))
11 #define _STDDEF_H
12 #define _STDDEF_H_
13 /* snaroff@next.com says the NeXT needs this.  */
14 #define _ANSI_STDDEF_H
15 /* Irix 5.1 needs this.  */
16 #define __STDDEF_H__
17 #endif
18
19 #ifndef __sys_stdtypes_h
20 /* This avoids lossage on SunOS but only if stdtypes.h comes first.
21    There's no way to win with the other order!  Sun lossage.  */
22
23 /* On 4.3bsd-net2, make sure ansi.h is included, so we have
24    one less case to deal with in the following.  */
25 #if defined (__BSD_NET2__) || defined (____386BSD____) || defined (__FreeBSD__) || defined(__NetBSD__)
26 #include <machine/ansi.h>
27 #endif
28
29 /* In 4.3bsd-net2, machine/ansi.h defines these symbols, which are
30     defined if the corresponding type is *not* defined.  */
31 #ifdef _ANSI_H_
32 #if !defined(_SIZE_T_) && !defined(_BSD_SIZE_T_)
33 #define _SIZE_T
34 #endif
35 #if !defined(_PTRDIFF_T_) && !defined(_BSD_PTRDIFF_T_)
36 #define _PTRDIFF_T
37 #endif
38 /* On BSD/386 1.1, at least, machine/ansi.h defines _BSD_WCHAR_T_
39    instead of _WCHAR_T_. */
40 #if !defined(_WCHAR_T_) && !defined(_BSD_WCHAR_T_)
41 #ifndef _BSD_WCHAR_T_
42 #define _WCHAR_T
43 #endif
44 #endif
45 /* Undef _FOO_T_ if we are supposed to define foo_t.  */
46 #if defined (__need_ptrdiff_t) || defined (_STDDEF_H_)
47 #undef _PTRDIFF_T_
48 #undef _BSD_PTRDIFF_T_
49 #endif
50 #if defined (__need_size_t) || defined (_STDDEF_H_)
51 #undef _SIZE_T_
52 #undef _BSD_SIZE_T_
53 #endif
54 #if defined (__need_wchar_t) || defined (_STDDEF_H_)
55 #undef _WCHAR_T_
56 #undef _BSD_WCHAR_T_
57 #endif
58 #endif /* _ANSI_H_ */
59
60 /* Sequent's header files use _PTRDIFF_T_ in some conflicting way.
61    Just ignore it.  */
62 #if defined (__sequent__) && defined (_PTRDIFF_T_)
63 #undef _PTRDIFF_T_
64 #endif
65
66 /* On VxWorks, <type/vxTypesBase.h> may have defined macros like
67    _TYPE_size_t which will typedef size_t.  fixincludes patched the
68    vxTypesBase.h so that this macro is only defined if _GCC_SIZE_T is
69    not defined, and so that defining this macro defines _GCC_SIZE_T.
70    If we find that the macros are still defined at this point, we must
71    invoke them so that the type is defined as expected.  */
72 #if defined (TYPE_ptrdiff_t) && (defined (__need_ptrdiff_t) || defined (_STDDEF_H_))
73 _TYPE_ptrdiff_t;
74 #undef _TYPE_ptrdiff_t
75 #endif
76 #if defined (_TYPE_size_t) && (defined (__need_size_t) || defined (_STDDEF_H_))
77 _TYPE_size_t;
78 #undef _TYPE_size_t
79 #endif
80 #if defined (_TYPE_wchar_t) && (defined (__need_wchar_t) || defined (_STDDEF_H_))
81 _TYPE_wchar_t;
82 #undef _TYPE_wchar_t
83 #endif
84
85 /* In case nobody has defined these types, but we aren't running under
86    GCC 2.00, make sure that __PTRDIFF_TYPE__, __SIZE__TYPE__, and
87    __WCHAR_TYPE__ have reasonable values.  This can happen if the
88    parts of GCC is compiled by an older compiler, that actually
89    include gstddef.h, such as collect2.  */
90
91 /* Signed type of difference of two pointers.  */
92
93 /* Define this type if we are doing the whole job,
94    or if we want this type in particular.  */
95 #if defined (_STDDEF_H) || defined (__need_ptrdiff_t)
96 #ifndef _PTRDIFF_T      /* in case <sys/types.h> has defined it. */
97 #ifndef _T_PTRDIFF_
98 #ifndef _T_PTRDIFF
99 #ifndef __PTRDIFF_T
100 #ifndef _PTRDIFF_T_
101 #ifndef _BSD_PTRDIFF_T_
102 #ifndef ___int_ptrdiff_t_h
103 #ifndef _GCC_PTRDIFF_T
104 #define _PTRDIFF_T
105 #define _T_PTRDIFF_
106 #define _T_PTRDIFF
107 #define __PTRDIFF_T
108 #define _PTRDIFF_T_
109 #define _BSD_PTRDIFF_T_
110 #define ___int_ptrdiff_t_h
111 #define _GCC_PTRDIFF_T
112 #ifndef __PTRDIFF_TYPE__
113 #define __PTRDIFF_TYPE__ long int
114 #endif
115 typedef __PTRDIFF_TYPE__ ptrdiff_t;
116 #endif /* _GCC_PTRDIFF_T */
117 #endif /* ___int_ptrdiff_t_h */
118 #endif /* _BSD_PTRDIFF_T_ */
119 #endif /* _PTRDIFF_T_ */
120 #endif /* __PTRDIFF_T */
121 #endif /* _T_PTRDIFF */
122 #endif /* _T_PTRDIFF_ */
123 #endif /* _PTRDIFF_T */
124
125 /* If this symbol has done its job, get rid of it.  */
126 #undef  __need_ptrdiff_t
127
128 #endif /* _STDDEF_H or __need_ptrdiff_t.  */
129
130 /* Unsigned type of `sizeof' something.  */
131
132 /* Define this type if we are doing the whole job,
133    or if we want this type in particular.  */
134 #if defined (_STDDEF_H) || defined (__need_size_t)
135 #ifndef _SIZE_T /* in case <sys/types.h> has defined it. */
136 #ifndef _SYS_SIZE_T_H
137 #ifndef _T_SIZE_
138 #ifndef _T_SIZE
139 #ifndef __SIZE_T
140 #ifndef _SIZE_T_
141 #ifndef _BSD_SIZE_T_
142 #ifndef _SIZE_T_DEFINED_
143 #ifndef _SIZE_T_DEFINED
144 #ifndef ___int_size_t_h
145 #ifndef _GCC_SIZE_T
146 #ifndef _SIZET_
147 #ifndef __size_t
148 #define _SIZE_T
149 #define _SYS_SIZE_T_H
150 #define _T_SIZE_
151 #define _T_SIZE
152 #define __SIZE_T
153 #define _SIZE_T_
154 #define _BSD_SIZE_T_
155 #define _SIZE_T_DEFINED_
156 #define _SIZE_T_DEFINED
157 #define ___int_size_t_h
158 #define _GCC_SIZE_T
159 #define _SIZET_
160 #define __size_t
161 #ifndef __SIZE_TYPE__
162 #define __SIZE_TYPE__ long unsigned int
163 #endif
164 #if !(defined (__GNUG__) && defined (size_t))
165 typedef __SIZE_TYPE__ size_t;
166 #endif /* !(defined (__GNUG__) && defined (size_t)) */
167 #endif /* __size_t */
168 #endif /* _SIZET_ */
169 #endif /* _GCC_SIZE_T */
170 #endif /* ___int_size_t_h */
171 #endif /* _SIZE_T_DEFINED */
172 #endif /* _SIZE_T_DEFINED_ */
173 #endif /* _BSD_SIZE_T_ */
174 #endif /* _SIZE_T_ */
175 #endif /* __SIZE_T */
176 #endif /* _T_SIZE */
177 #endif /* _T_SIZE_ */
178 #endif /* _SYS_SIZE_T_H */
179 #endif /* _SIZE_T */
180 #undef  __need_size_t
181 #endif /* _STDDEF_H or __need_size_t.  */
182
183
184 /* Wide character type.
185    Locale-writers should change this as necessary to
186    be big enough to hold unique values not between 0 and 127,
187    and not (wchar_t) -1, for each defined multibyte character.  */
188
189 /* Define this type if we are doing the whole job,
190    or if we want this type in particular.  */
191 #if defined (_STDDEF_H) || defined (__need_wchar_t)
192 #ifndef _WCHAR_T
193 #ifndef _T_WCHAR_
194 #ifndef _T_WCHAR
195 #ifndef __WCHAR_T
196 #ifndef _WCHAR_T_
197 #ifndef _BSD_WCHAR_T_
198 #ifndef _WCHAR_T_DEFINED_
199 #ifndef _WCHAR_T_DEFINED
200 #ifndef _WCHAR_T_H
201 #ifndef ___int_wchar_t_h
202 #ifndef __INT_WCHAR_T_H
203 #ifndef _GCC_WCHAR_T
204 #define _WCHAR_T
205 #define _T_WCHAR_
206 #define _T_WCHAR
207 #define __WCHAR_T
208 #define _WCHAR_T_
209 #define _BSD_WCHAR_T_
210 #define _WCHAR_T_DEFINED_
211 #define _WCHAR_T_DEFINED
212 #define _WCHAR_T_H
213 #define ___int_wchar_t_h
214 #define __INT_WCHAR_T_H
215 #define _GCC_WCHAR_T
216
217 /* On BSD/386 1.1, at least, machine/ansi.h defines _BSD_WCHAR_T_
218    instead of _WCHAR_T_, and _BSD_RUNE_T_ (which, unlike the other
219    symbols in the _FOO_T_ family, stays defined even after its
220    corresponding type is defined).  If we define wchar_t, then we
221    must undef _WCHAR_T_; for BSD/386 1.1 (and perhaps others), if
222    we undef _WCHAR_T_, then we must also define rune_t, since 
223    headers like runetype.h assume that if machine/ansi.h is included,
224    and _BSD_WCHAR_T_ is not defined, then rune_t is available.
225    machine/ansi.h says, "Note that _WCHAR_T_ and _RUNE_T_ must be of
226    the same type." */
227 #ifdef _BSD_WCHAR_T_
228 #undef _BSD_WCHAR_T_
229 #ifdef _BSD_RUNE_T_
230 #if !defined (_ANSI_SOURCE) && !defined (_POSIX_SOURCE)
231 typedef _BSD_RUNE_T_ rune_t;
232 #endif
233 #endif
234 #endif
235
236 #ifndef __WCHAR_TYPE__
237 #define __WCHAR_TYPE__ int
238 #endif
239 typedef __WCHAR_TYPE__ wchar_t;
240 #endif
241 #endif
242 #endif
243 #endif
244 #endif
245 #endif
246 #endif
247 #endif
248 #endif
249 #endif
250 #endif
251 #endif
252 #undef  __need_wchar_t
253 #endif /* _STDDEF_H or __need_wchar_t.  */
254
255 /*  In 4.3bsd-net2, leave these undefined to indicate that size_t, etc.
256     are already defined.  */
257 #ifdef _ANSI_H_
258 /*  The references to _GCC_PTRDIFF_T_, _GCC_SIZE_T_, and _GCC_WCHAR_T_
259     are probably typos and should be removed before 2.7 is released.  */
260 #ifdef _GCC_PTRDIFF_T_
261 #undef _PTRDIFF_T_
262 #undef _BSD_PTRDIFF_T_
263 #endif
264 #ifdef _GCC_SIZE_T_
265 #undef _SIZE_T_
266 #undef _BSD_SIZE_T_
267 #endif
268 #ifdef _GCC_WCHAR_T_
269 #undef _WCHAR_T_
270 #undef _BSD_WCHAR_T_
271 #endif
272 /*  The following ones are the real ones.  */
273 #ifdef _GCC_PTRDIFF_T
274 #undef _PTRDIFF_T_
275 #endif
276 #ifdef _GCC_SIZE_T
277 #undef _SIZE_T_
278 #endif
279 #ifdef _GCC_WCHAR_T
280 #undef _WCHAR_T_
281 #endif
282 #endif /* _ANSI_H_ */
283
284 #endif /* __sys_stdtypes_h */
285
286 /* A null pointer constant.  */
287
288 #if defined (_STDDEF_H) || defined (__need_NULL)
289 #undef NULL             /* in case <stdio.h> has defined it. */
290 #define NULL ((void *)0)
291 #endif  /* NULL not defined and <stddef.h> or need NULL.  */
292 #undef  __need_NULL
293
294 #ifdef _STDDEF_H
295
296 /* Offset of member MEMBER in a struct of type TYPE.  */
297
298 #define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER)
299
300 #endif /* _STDDEF_H was defined this time */
301
302 #endif /* __STDDEF_H__ was not defined before */
303 #endif /* _ANSI_STDDEF_H was not defined before */
304 #endif /* _STDDEF_H_ was not defined before */
305 #endif /* _STDDEF_H was not defined before */