56 lines
1.2 KiB
C
56 lines
1.2 KiB
C
|
/* Common definitions <stddef.h>
|
||
|
|
||
|
This file is part of the Public Domain C Library (PDCLib).
|
||
|
Permission is granted to use, modify, and / or redistribute at will.
|
||
|
*/
|
||
|
|
||
|
#ifndef _PDCLIB_STDDEF_H
|
||
|
#define _PDCLIB_STDDEF_H _PDCLIB_STDDEF_H
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
#include "pdclib/_PDCLIB_lib_ext1.h"
|
||
|
#include "pdclib/_PDCLIB_internal.h"
|
||
|
|
||
|
typedef _PDCLIB_ptrdiff_t ptrdiff_t;
|
||
|
|
||
|
#ifndef _PDCLIB_SIZE_T_DEFINED
|
||
|
#define _PDCLIB_SIZE_T_DEFINED _PDCLIB_SIZE_T_DEFINED
|
||
|
typedef _PDCLIB_size_t size_t;
|
||
|
#endif
|
||
|
|
||
|
#ifndef __cplusplus
|
||
|
typedef _PDCLIB_wchar_t wchar_t;
|
||
|
#endif
|
||
|
|
||
|
#ifndef _PDCLIB_NULL_DEFINED
|
||
|
#define _PDCLIB_NULL_DEFINED _PDCLIB_NULL_DEFINED
|
||
|
#define NULL _PDCLIB_NULL
|
||
|
#endif
|
||
|
|
||
|
#define offsetof( type, member ) _PDCLIB_offsetof( type, member )
|
||
|
|
||
|
/* Annex K -- Bounds-checking interfaces */
|
||
|
|
||
|
#if ( __STDC_WANT_LIB_EXT1__ + 0 ) != 0
|
||
|
#ifndef _PDCLIB_RSIZE_T_DEFINED
|
||
|
#define _PDCLIB_RSIZE_T_DEFINED _PDCLIB_RSIZE_T_DEFINED
|
||
|
typedef size_t rsize_t;
|
||
|
#endif
|
||
|
#endif
|
||
|
|
||
|
/* Extension hook for downstream projects that want to have non-standard
|
||
|
extensions to standard headers.
|
||
|
*/
|
||
|
#ifdef _PDCLIB_EXTEND_STDDEF_H
|
||
|
#include _PDCLIB_EXTEND_STDDEF_H
|
||
|
#endif
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|