git.ucc.asn.au
/
tpg
/
acess2.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
AcessNative - Debugging and implementing, getting there now
[tpg/acess2.git]
/
Usermode
/
include
/
stddef.h
1
/*
2
* AcessOS LibC
3
* stddef.h
4
*/
5
#ifndef _STDDEF_H
6
#define _STDDEF_H
7
8
// === CONSTANTS ===
9
#ifndef NULL
10
# define NULL ((void*)0)
11
#endif
12
13
// === TYPES ===
14
#ifndef size_t
15
typedef unsigned int size_t;
16
#endif
17
18
#endif
UCC
git Repository :: git.ucc.asn.au