PatchworkOS
Loading...
Searching...
No Matches
stddef.h
Go to the documentation of this file.
1#ifndef _STDDEF_H
2#define _STDDEF_H 1
3
4#if defined(__cplusplus)
5extern "C"
6{
7#endif
8
9#include "_internal/ERR.h"
10#include "_internal/NULL.h"
11#include "_internal/config.h"
12#include "_internal/ptrdiff_t.h"
13#include "_internal/size_t.h"
14#include "_internal/wchar_t.h"
15
16#define offsetof(type, member) ((size_t)&(((type*)0)->member))
17
18#if _USE_ANNEX_K == 1
19#include "_internal/rsize_t.h"
20#endif
21
22#if defined(__cplusplus)
23}
24#endif
25
26#endif