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
unistd: add execvp()
[neatlibc.git]
/
stddef.h
blob
6857160f1919cb37ae36ae8378ee4af6a08aca24
1
#ifndef _STDLIB_H
2
#define _STDLIB_H
3
4
#define NULL ((void *) 0)
5
#define offsetof(type, field) ((int) (&((type *) 0)->field))
6
7
typedef
unsigned size_t
;
8
9
#endif