PatchworkOS  19e446b
A non-POSIX operating system.
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 "_libstd/ERR.h"
10#include "_libstd/NULL.h"
11#include "_libstd/config.h"
12#include "_libstd/ptrdiff_t.h"
13#include "_libstd/size_t.h"
14#include "_libstd/wchar_t.h"
15
16#define offsetof(type, member) ((size_t)&(((type*)0)->member))
17
18#if _USE_ANNEX_K == 1
19#include "_libstd/rsize_t.h"
20#endif
21
22#if defined(__cplusplus)
23}
24#endif
25
26#endif