repo.or.cz
/
davej-history.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Import 2.3.25pre1
[davej-history.git]
/
include
/
linux
/
stddef.h
blob
39da8088d9429b0c0b5d7eca6de8193c0703b85d
1
#ifndef _LINUX_STDDEF_H
2
#define _LINUX_STDDEF_H
3
4
#undef NULL
5
#define NULL ((void *)0)
6
7
#undef offsetof
8
#define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER)
9
10
#endif