This website requires JavaScript.
Explore
Help
Sign In
natas_hw
/
cbc
mirror of
https://github.com/aamine/cbc
Watch
1
Star
0
Fork
You've already forked cbc
0
Code
Issues
Packages
Projects
Releases
Wiki
Activity
f339ad28bc
cbc
/
import
/
stddef.hb
6 lines
89 B
Plaintext
Raw
Normal View
History
Unescape
Escape
* test/string.hb: new file. * test/strings.hb: new file. * test/stddef.hb: new file. * test/errno.hb: new file. * test/stdio.hb: add more decls. git-svn-id: file:///Users/aamine/c/gitwork/public/cbc/trunk@3827 1b9489fe-b721-0410-924e-b54b9192deb8
2008-01-14 20:22:33 +08:00
// stddef.h
r4884@macbookpro: aamine | 2009-05-23 22:30:20 +0900 * net/loveruby/cflat/parser/Parser.jj: now NULL is not a reserved word. * import/stddef.hb: define const NULL. git-svn-id: file:///Users/aamine/c/gitwork/public/cbc/trunk@4231 1b9489fe-b721-0410-924e-b54b9192deb8
2009-05-23 22:30:54 +08:00
const void* NULL = 0;
* test/string.hb: new file. * test/strings.hb: new file. * test/stddef.hb: new file. * test/errno.hb: new file. * test/stdio.hb: add more decls. git-svn-id: file:///Users/aamine/c/gitwork/public/cbc/trunk@3827 1b9489fe-b721-0410-924e-b54b9192deb8
2008-01-14 20:22:33 +08:00
typedef unsigned long size_t;
r4884@macbookpro: aamine | 2009-05-23 22:30:20 +0900 * net/loveruby/cflat/parser/Parser.jj: now NULL is not a reserved word. * import/stddef.hb: define const NULL. git-svn-id: file:///Users/aamine/c/gitwork/public/cbc/trunk@4231 1b9489fe-b721-0410-924e-b54b9192deb8
2009-05-23 22:30:54 +08:00
typedef long ptrdiff_t;