repo.or.cz
/
neatlibc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
stdlib: call __neatlibc_exit() in exit()
[neatlibc.git]
/
stddef.h
blob
b8b27158e4ee00d99f52e53420d500398bfe84ce
1
#ifndef _STDDEF_H
2
#define _STDDEF_H
3
4
#define NULL ((void *) 0)
5
#define offsetof(type, field) ((int) (&((type *) 0)->field))
6
7
typedef
unsigned long size_t
;
8
9
#endif