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