stddef.h 13.4 KB
Newer Older
1
/* Copyright (C) 1989-2014 Free Software Foundation, Inc.
2

3
This file is part of GCC.
4

5
GCC is free software; you can redistribute it and/or modify
6
it under the terms of the GNU General Public License as published by
7
the Free Software Foundation; either version 3, or (at your option)
8 9
any later version.

10
GCC is distributed in the hope that it will be useful,
11 12 13 14
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

15 16 17
Under Section 7 of GPL version 3, you are granted additional
permissions described in the GCC Runtime Library Exception, version
3.1, as published by the Free Software Foundation.
18

19 20 21 22
You should have received a copy of the GNU General Public License and
a copy of the GCC Runtime Library Exception along with this program;
see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
<http://www.gnu.org/licenses/>.  */
23 24 25 26

/*
 * ISO C Standard:  7.17  Common definitions  <stddef.h>
 */
27 28 29 30 31
#if (!defined(_STDDEF_H) && !defined(_STDDEF_H_) && !defined(_ANSI_STDDEF_H) \
     && !defined(__STDDEF_H__)) \
    || defined(__need_wchar_t) || defined(__need_size_t) \
    || defined(__need_ptrdiff_t) || defined(__need_NULL) \
    || defined(__need_wint_t)
32 33 34 35 36

/* Any one of these symbols __need_* means that GNU libc
   wants us just to define one data type.  So don't define
   the symbols that indicate this file's entire job has been done.  */
#if (!defined(__need_wchar_t) && !defined(__need_size_t)	\
37 38
     && !defined(__need_ptrdiff_t) && !defined(__need_NULL)	\
     && !defined(__need_wint_t))
Michael Meissner committed
39 40
#define _STDDEF_H
#define _STDDEF_H_
41 42
/* snaroff@next.com says the NeXT needs this.  */
#define _ANSI_STDDEF_H
43
#endif
Michael Meissner committed
44

45 46 47 48
#ifndef __sys_stdtypes_h
/* This avoids lossage on SunOS but only if stdtypes.h comes first.
   There's no way to win with the other order!  Sun lossage.  */

49 50
/* On 4.3bsd-net2, make sure ansi.h is included, so we have
   one less case to deal with in the following.  */
51
#if defined (__BSD_NET2__) || defined (____386BSD____) || (defined (__FreeBSD__) && (__FreeBSD__ < 5)) || defined(__NetBSD__)
52
#include <machine/ansi.h>
53
#endif
54 55 56 57
/* On FreeBSD 5, machine/ansi.h does not exist anymore... */
#if defined (__FreeBSD__) && (__FreeBSD__ >= 5)
#include <sys/_types.h>
#endif
58 59

/* In 4.3bsd-net2, machine/ansi.h defines these symbols, which are
60
   defined if the corresponding type is *not* defined.
61 62 63
   FreeBSD-2.1 defines _MACHINE_ANSI_H_ instead of _ANSI_H_.
   NetBSD defines _I386_ANSI_H_ and _X86_64_ANSI_H_ instead of _ANSI_H_ */
#if defined(_ANSI_H_) || defined(_MACHINE_ANSI_H_) || defined(_X86_64_ANSI_H_)  || defined(_I386_ANSI_H_)
64
#if !defined(_SIZE_T_) && !defined(_BSD_SIZE_T_)
65 66
#define _SIZE_T
#endif
67
#if !defined(_PTRDIFF_T_) && !defined(_BSD_PTRDIFF_T_)
68 69
#define _PTRDIFF_T
#endif
70 71
/* On BSD/386 1.1, at least, machine/ansi.h defines _BSD_WCHAR_T_
   instead of _WCHAR_T_. */
72
#if !defined(_WCHAR_T_) && !defined(_BSD_WCHAR_T_)
73
#ifndef _BSD_WCHAR_T_
74 75
#define _WCHAR_T
#endif
76
#endif
77
/* Undef _FOO_T_ if we are supposed to define foo_t.  */
78
#if defined (__need_ptrdiff_t) || defined (_STDDEF_H_)
79
#undef _PTRDIFF_T_
80
#undef _BSD_PTRDIFF_T_
81
#endif
82
#if defined (__need_size_t) || defined (_STDDEF_H_)
83
#undef _SIZE_T_
84
#undef _BSD_SIZE_T_
85
#endif
86
#if defined (__need_wchar_t) || defined (_STDDEF_H_)
87
#undef _WCHAR_T_
88
#undef _BSD_WCHAR_T_
89
#endif
90
#endif /* defined(_ANSI_H_) || defined(_MACHINE_ANSI_H_) || defined(_X86_64_ANSI_H_) || defined(_I386_ANSI_H_) */
91

92 93 94 95 96 97
/* Sequent's header files use _PTRDIFF_T_ in some conflicting way.
   Just ignore it.  */
#if defined (__sequent__) && defined (_PTRDIFF_T_)
#undef _PTRDIFF_T_
#endif

98 99 100 101 102 103
/* On VxWorks, <type/vxTypesBase.h> may have defined macros like
   _TYPE_size_t which will typedef size_t.  fixincludes patched the
   vxTypesBase.h so that this macro is only defined if _GCC_SIZE_T is
   not defined, and so that defining this macro defines _GCC_SIZE_T.
   If we find that the macros are still defined at this point, we must
   invoke them so that the type is defined as expected.  */
104
#if defined (_TYPE_ptrdiff_t) && (defined (__need_ptrdiff_t) || defined (_STDDEF_H_))
105 106 107 108 109 110 111 112 113 114 115 116
_TYPE_ptrdiff_t;
#undef _TYPE_ptrdiff_t
#endif
#if defined (_TYPE_size_t) && (defined (__need_size_t) || defined (_STDDEF_H_))
_TYPE_size_t;
#undef _TYPE_size_t
#endif
#if defined (_TYPE_wchar_t) && (defined (__need_wchar_t) || defined (_STDDEF_H_))
_TYPE_wchar_t;
#undef _TYPE_wchar_t
#endif

117
/* In case nobody has defined these types, but we aren't running under
118
   GCC 2.00, make sure that __PTRDIFF_TYPE__, __SIZE_TYPE__, and
119 120 121 122
   __WCHAR_TYPE__ have reasonable values.  This can happen if the
   parts of GCC is compiled by an older compiler, that actually
   include gstddef.h, such as collect2.  */

Michael Meissner committed
123 124
/* Signed type of difference of two pointers.  */

125 126 127
/* Define this type if we are doing the whole job,
   or if we want this type in particular.  */
#if defined (_STDDEF_H) || defined (__need_ptrdiff_t)
Michael Meissner committed
128
#ifndef _PTRDIFF_T	/* in case <sys/types.h> has defined it. */
129
#ifndef _T_PTRDIFF_
Michael Meissner committed
130 131 132
#ifndef _T_PTRDIFF
#ifndef __PTRDIFF_T
#ifndef _PTRDIFF_T_
133
#ifndef _BSD_PTRDIFF_T_
Michael Meissner committed
134
#ifndef ___int_ptrdiff_t_h
135
#ifndef _GCC_PTRDIFF_T
136
#ifndef _PTRDIFF_T_DECLARED /* DragonFly */
Michael Meissner committed
137
#define _PTRDIFF_T
138
#define _T_PTRDIFF_
Michael Meissner committed
139 140 141
#define _T_PTRDIFF
#define __PTRDIFF_T
#define _PTRDIFF_T_
142
#define _BSD_PTRDIFF_T_
Michael Meissner committed
143
#define ___int_ptrdiff_t_h
144
#define _GCC_PTRDIFF_T
145
#define _PTRDIFF_T_DECLARED
146 147 148
#ifndef __PTRDIFF_TYPE__
#define __PTRDIFF_TYPE__ long int
#endif
Michael Meissner committed
149
typedef __PTRDIFF_TYPE__ ptrdiff_t;
150
#endif /* _PTRDIFF_T_DECLARED */
151
#endif /* _GCC_PTRDIFF_T */
Michael Meissner committed
152
#endif /* ___int_ptrdiff_t_h */
153
#endif /* _BSD_PTRDIFF_T_ */
Michael Meissner committed
154 155 156
#endif /* _PTRDIFF_T_ */
#endif /* __PTRDIFF_T */
#endif /* _T_PTRDIFF */
157
#endif /* _T_PTRDIFF_ */
Michael Meissner committed
158 159
#endif /* _PTRDIFF_T */

160 161 162
/* If this symbol has done its job, get rid of it.  */
#undef	__need_ptrdiff_t

163 164
#endif /* _STDDEF_H or __need_ptrdiff_t.  */

Michael Meissner committed
165 166
/* Unsigned type of `sizeof' something.  */

167 168 169
/* Define this type if we are doing the whole job,
   or if we want this type in particular.  */
#if defined (_STDDEF_H) || defined (__need_size_t)
170
#ifndef __size_t__	/* BeOS */
Richard Henderson committed
171
#ifndef __SIZE_T__	/* Cray Unicos/Mk */
Michael Meissner committed
172
#ifndef _SIZE_T	/* in case <sys/types.h> has defined it. */
173
#ifndef _SYS_SIZE_T_H
174
#ifndef _T_SIZE_
Michael Meissner committed
175 176 177
#ifndef _T_SIZE
#ifndef __SIZE_T
#ifndef _SIZE_T_
178
#ifndef _BSD_SIZE_T_
179
#ifndef _SIZE_T_DEFINED_
180
#ifndef _SIZE_T_DEFINED
181
#ifndef _BSD_SIZE_T_DEFINED_	/* Darwin */
182
#ifndef _SIZE_T_DECLARED	/* FreeBSD 5 */
Michael Meissner committed
183
#ifndef ___int_size_t_h
184
#ifndef _GCC_SIZE_T
185
#ifndef _SIZET_
186
#ifndef __size_t
187
#define __size_t__	/* BeOS */
Richard Henderson committed
188
#define __SIZE_T__	/* Cray Unicos/Mk */
Michael Meissner committed
189
#define _SIZE_T
190
#define _SYS_SIZE_T_H
191
#define _T_SIZE_
Michael Meissner committed
192 193 194
#define _T_SIZE
#define __SIZE_T
#define _SIZE_T_
195
#define _BSD_SIZE_T_
196
#define _SIZE_T_DEFINED_
197
#define _SIZE_T_DEFINED
198
#define _BSD_SIZE_T_DEFINED_	/* Darwin */
199
#define _SIZE_T_DECLARED	/* FreeBSD 5 */
Michael Meissner committed
200
#define ___int_size_t_h
201
#define _GCC_SIZE_T
202
#define _SIZET_
203
#if (defined (__FreeBSD__) && (__FreeBSD__ >= 5)) \
204
  || defined(__DragonFly__) \
205 206
  || defined(__FreeBSD_kernel__)
/* __size_t is a typedef on FreeBSD 5, must not trash it. */
207
#elif defined (__VMS__)
208
/* __size_t is also a typedef on VMS.  */
209
#else
210
#define __size_t
211
#endif
212 213 214
#ifndef __SIZE_TYPE__
#define __SIZE_TYPE__ long unsigned int
#endif
215
#if !(defined (__GNUG__) && defined (size_t))
Michael Meissner committed
216
typedef __SIZE_TYPE__ size_t;
217 218 219
#ifdef __BEOS__
typedef long ssize_t;
#endif /* __BEOS__ */
220
#endif /* !(defined (__GNUG__) && defined (size_t)) */
221
#endif /* __size_t */
222
#endif /* _SIZET_ */
223
#endif /* _GCC_SIZE_T */
Michael Meissner committed
224
#endif /* ___int_size_t_h */
225
#endif /* _SIZE_T_DECLARED */
226
#endif /* _BSD_SIZE_T_DEFINED_ */
227
#endif /* _SIZE_T_DEFINED */
228
#endif /* _SIZE_T_DEFINED_ */
229
#endif /* _BSD_SIZE_T_ */
Michael Meissner committed
230 231 232
#endif /* _SIZE_T_ */
#endif /* __SIZE_T */
#endif /* _T_SIZE */
233
#endif /* _T_SIZE_ */
234
#endif /* _SYS_SIZE_T_H */
Michael Meissner committed
235
#endif /* _SIZE_T */
Richard Henderson committed
236
#endif /* __SIZE_T__ */
237
#endif /* __size_t__ */
238
#undef	__need_size_t
239
#endif /* _STDDEF_H or __need_size_t.  */
Michael Meissner committed
240

241 242 243 244 245

/* Wide character type.
   Locale-writers should change this as necessary to
   be big enough to hold unique values not between 0 and 127,
   and not (wchar_t) -1, for each defined multibyte character.  */
Michael Meissner committed
246

247 248 249
/* Define this type if we are doing the whole job,
   or if we want this type in particular.  */
#if defined (_STDDEF_H) || defined (__need_wchar_t)
250
#ifndef __wchar_t__	/* BeOS */
Richard Henderson committed
251
#ifndef __WCHAR_T__	/* Cray Unicos/Mk */
Michael Meissner committed
252 253
#ifndef _WCHAR_T
#ifndef _T_WCHAR_
254
#ifndef _T_WCHAR
Michael Meissner committed
255 256
#ifndef __WCHAR_T
#ifndef _WCHAR_T_
257
#ifndef _BSD_WCHAR_T_
258
#ifndef _BSD_WCHAR_T_DEFINED_    /* Darwin */
259
#ifndef _BSD_RUNE_T_DEFINED_	/* Darwin */
260
#ifndef _WCHAR_T_DECLARED /* FreeBSD 5 */
261
#ifndef _WCHAR_T_DEFINED_
262
#ifndef _WCHAR_T_DEFINED
263
#ifndef _WCHAR_T_H
Michael Meissner committed
264
#ifndef ___int_wchar_t_h
265
#ifndef __INT_WCHAR_T_H
266
#ifndef _GCC_WCHAR_T
267
#define __wchar_t__	/* BeOS */
Richard Henderson committed
268
#define __WCHAR_T__	/* Cray Unicos/Mk */
Michael Meissner committed
269 270
#define _WCHAR_T
#define _T_WCHAR_
271
#define _T_WCHAR
Michael Meissner committed
272 273
#define __WCHAR_T
#define _WCHAR_T_
274
#define _BSD_WCHAR_T_
275
#define _WCHAR_T_DEFINED_
276
#define _WCHAR_T_DEFINED
277
#define _WCHAR_T_H
Michael Meissner committed
278
#define ___int_wchar_t_h
279
#define __INT_WCHAR_T_H
280
#define _GCC_WCHAR_T
281
#define _WCHAR_T_DECLARED
282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297

/* On BSD/386 1.1, at least, machine/ansi.h defines _BSD_WCHAR_T_
   instead of _WCHAR_T_, and _BSD_RUNE_T_ (which, unlike the other
   symbols in the _FOO_T_ family, stays defined even after its
   corresponding type is defined).  If we define wchar_t, then we
   must undef _WCHAR_T_; for BSD/386 1.1 (and perhaps others), if
   we undef _WCHAR_T_, then we must also define rune_t, since 
   headers like runetype.h assume that if machine/ansi.h is included,
   and _BSD_WCHAR_T_ is not defined, then rune_t is available.
   machine/ansi.h says, "Note that _WCHAR_T_ and _RUNE_T_ must be of
   the same type." */
#ifdef _BSD_WCHAR_T_
#undef _BSD_WCHAR_T_
#ifdef _BSD_RUNE_T_
#if !defined (_ANSI_SOURCE) && !defined (_POSIX_SOURCE)
typedef _BSD_RUNE_T_ rune_t;
298
#define _BSD_WCHAR_T_DEFINED_
299
#define _BSD_RUNE_T_DEFINED_	/* Darwin */
300
#if defined (__FreeBSD__) && (__FreeBSD__ < 5)
301
/* Why is this file so hard to maintain properly?  In contrast to
302 303 304 305 306
   the comment above regarding BSD/386 1.1, on FreeBSD for as long
   as the symbol has existed, _BSD_RUNE_T_ must not stay defined or
   redundant typedefs will occur when stdlib.h is included after this file. */
#undef _BSD_RUNE_T_
#endif
307 308 309
#endif
#endif
#endif
310 311 312 313 314 315 316 317 318 319 320 321 322
/* FreeBSD 5 can't be handled well using "traditional" logic above
   since it no longer defines _BSD_RUNE_T_ yet still desires to export
   rune_t in some cases... */
#if defined (__FreeBSD__) && (__FreeBSD__ >= 5)
#if !defined (_ANSI_SOURCE) && !defined (_POSIX_SOURCE)
#if __BSD_VISIBLE
#ifndef _RUNE_T_DECLARED
typedef __rune_t        rune_t;
#define _RUNE_T_DECLARED
#endif
#endif
#endif
#endif
323

324 325 326
#ifndef __WCHAR_TYPE__
#define __WCHAR_TYPE__ int
#endif
327
#ifndef __cplusplus
Michael Meissner committed
328 329 330 331 332 333
typedef __WCHAR_TYPE__ wchar_t;
#endif
#endif
#endif
#endif
#endif
334
#endif
Richard Stallman committed
335
#endif
336
#endif /* _WCHAR_T_DECLARED */
337
#endif /* _BSD_RUNE_T_DEFINED_ */
338
#endif
339
#endif
340
#endif
341
#endif
342
#endif
343
#endif
344
#endif
Richard Henderson committed
345
#endif /* __WCHAR_T__ */
346
#endif /* __wchar_t__ */
347
#undef	__need_wchar_t
348
#endif /* _STDDEF_H or __need_wchar_t.  */
Michael Meissner committed
349

350
#if defined (__need_wint_t)
351 352 353 354 355 356 357 358
#ifndef _WINT_T
#define _WINT_T

#ifndef __WINT_TYPE__
#define __WINT_TYPE__ unsigned int
#endif
typedef __WINT_TYPE__ wint_t;
#endif
359
#undef __need_wint_t
360 361
#endif

362
/*  In 4.3bsd-net2, leave these undefined to indicate that size_t, etc.
363
    are already defined.  */
364
/*  BSD/OS 3.1 and FreeBSD [23].x require the MACHINE_ANSI_H check here.  */
365 366
/*  NetBSD 5 requires the I386_ANSI_H and X86_64_ANSI_H checks here.  */
#if defined(_ANSI_H_) || defined(_MACHINE_ANSI_H_) || defined(_X86_64_ANSI_H_) || defined(_I386_ANSI_H_)
367
/*  The references to _GCC_PTRDIFF_T_, _GCC_SIZE_T_, and _GCC_WCHAR_T_
368
    are probably typos and should be removed before 2.8 is released.  */
369
#ifdef _GCC_PTRDIFF_T_
370
#undef _PTRDIFF_T_
371
#undef _BSD_PTRDIFF_T_
372 373
#endif
#ifdef _GCC_SIZE_T_
374
#undef _SIZE_T_
375
#undef _BSD_SIZE_T_
376
#endif
377 378
#ifdef _GCC_WCHAR_T_
#undef _WCHAR_T_
379
#undef _BSD_WCHAR_T_
380
#endif
381 382 383
/*  The following ones are the real ones.  */
#ifdef _GCC_PTRDIFF_T
#undef _PTRDIFF_T_
384
#undef _BSD_PTRDIFF_T_
385 386 387
#endif
#ifdef _GCC_SIZE_T
#undef _SIZE_T_
388
#undef _BSD_SIZE_T_
389 390 391
#endif
#ifdef _GCC_WCHAR_T
#undef _WCHAR_T_
392
#undef _BSD_WCHAR_T_
393
#endif
394
#endif /* _ANSI_H_ || _MACHINE_ANSI_H_ || _X86_64_ANSI_H_ || _I386_ANSI_H_ */
395

396 397
#endif /* __sys_stdtypes_h */

Michael Meissner committed
398 399
/* A null pointer constant.  */

400
#if defined (_STDDEF_H) || defined (__need_NULL)
Michael Meissner committed
401
#undef NULL		/* in case <stdio.h> has defined it. */
402 403 404
#ifdef __GNUG__
#define NULL __null
#else   /* G++ */
405
#ifndef __cplusplus
Michael Meissner committed
406
#define NULL ((void *)0)
407 408 409
#else   /* C++ */
#define NULL 0
#endif  /* C++ */
410
#endif  /* G++ */
411 412 413 414
#endif	/* NULL not defined and <stddef.h> or need NULL.  */
#undef	__need_NULL

#ifdef _STDDEF_H
Michael Meissner committed
415

416
/* Offset of member MEMBER in a struct of type TYPE. */
417 418
#define offsetof(TYPE, MEMBER) __builtin_offsetof (TYPE, MEMBER)

Joseph Myers committed
419
#if (defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L) \
420 421 422 423 424 425 426 427 428 429 430
  || (defined(__cplusplus) && __cplusplus >= 201103L)
#ifndef _GCC_MAX_ALIGN_T
#define _GCC_MAX_ALIGN_T
/* Type whose alignment is supported in every context and is at least
   as great as that of any standard type not using alignment
   specifiers.  */
typedef struct {
  long long __max_align_ll __attribute__((__aligned__(__alignof__(long long))));
  long double __max_align_ld __attribute__((__aligned__(__alignof__(long double))));
} max_align_t;
#endif
Joseph Myers committed
431
#endif /* C11 or C++11.  */
432

433 434 435 436 437 438 439
#if defined(__cplusplus) && __cplusplus >= 201103L
#ifndef _GXX_NULLPTR_T
#define _GXX_NULLPTR_T
  typedef decltype(nullptr) nullptr_t;
#endif
#endif /* C++11.  */

440
#endif /* _STDDEF_H was defined this time */
441

442 443
#endif /* !_STDDEF_H && !_STDDEF_H_ && !_ANSI_STDDEF_H && !__STDDEF_H__
	  || __need_XXX was not defined before */