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