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