5 /* 7.17 Common definitions <stddef.h>
7 This file is part of the Public Domain C Library (PDCLib).
8 Permission is granted to use, modify, and / or redistribute at will.
11 #ifndef _PDCLIB_STDDEF_H
12 #define _PDCLIB_STDDEF_H _PDCLIB_STDDEF_H
14 #ifndef _PDCLIB_CONFIG_H
15 #define _PDCLIB_CONFIG_H _PDCLIB_CONFIG_H
16 #include <_PDCLIB_config.h>
19 typedef _PDCLIB_ptrdiff_t ptrdiff_t;
20 typedef _PDCLIB_size_t size_t;
21 typedef _PDCLIB_wchar_t wchar_t;
23 #define NULL _PDCLIB_NULL
25 #define offsetof( type, member ) _PDCLIB_offsetof( type, member )