mirror of
https://github.com/mintsuki/freestanding-headers
synced 2024-11-22 04:21:20 +03:00
24 lines
332 B
C
24 lines
332 B
C
#ifndef _STDDEF_H
|
|
#define _STDDEF_H 1
|
|
|
|
typedef __SIZE_TYPE__ size_t;
|
|
typedef __PTRDIFF_TYPE__ ptrdiff_t;
|
|
|
|
#ifndef __cplusplus
|
|
typedef __WCHAR_TYPE__ wchar_t;
|
|
#endif
|
|
|
|
#ifdef NULL
|
|
#undef NULL
|
|
#endif
|
|
|
|
#ifndef __cplusplus
|
|
# define NULL ((void *)0)
|
|
#else
|
|
# define NULL 0
|
|
#endif
|
|
|
|
#define offsetof(s, m) __builtin_offsetof(s, m)
|
|
|
|
#endif
|