]> pd.if.org Git - pdclib/blob - includes/stddef.h
Removed the header include guard 'optimization'.
[pdclib] / includes / stddef.h
1 /* $Id$ */
2
3 /* 7.17 Common definitions <stddef.h>
4
5    This file is part of the Public Domain C Library (PDCLib).
6    Permission is granted to use, modify, and / or redistribute at will.
7 */
8
9 #ifndef _PDCLIB_STDDEF_H
10 #define _PDCLIB_STDDEF_H _PDCLIB_STDDEF_H
11
12 #include <_PDCLIB_int.h>
13
14 typedef _PDCLIB_ptrdiff_t ptrdiff_t;
15
16 #ifndef _PDCLIB_SIZE_T_DEFINED
17 #define _PDCLIB_SIZE_T_DEFINED _PDCLIB_SIZE_T_DEFINED
18 typedef _PDCLIB_size_t size_t;
19 #endif
20
21 typedef _PDCLIB_wchar_t   wchar_t;
22
23 #ifndef _PDCLIB_NULL_DEFINED
24 #define _PDCLIB_NULL_DEFINED _PDCLIB_NULL_DEFINED
25 #define NULL _PDCLIB_NULL
26 #endif
27
28 #define offsetof( type, member ) _PDCLIB_offsetof( type, member )
29
30 #endif
31