kern
diff src/klibc/stdlib.h @ 0:662ff2170531
starting the kernel
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Wed, 01 Dec 2010 22:02:42 +0200 |
parents | |
children | 633e35c64772 |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/src/klibc/stdlib.h Wed Dec 01 22:02:42 2010 +0200 1.3 @@ -0,0 +1,9 @@ 1.4 +#ifndef STDLIB_H_ 1.5 +#define STDLIB_H_ 1.6 + 1.7 +#include <inttypes.h> 1.8 + 1.9 +typedef int32_t ssize_t; 1.10 +typedef uint32_t size_t; 1.11 + 1.12 +#endif /* STDLIB_H_ */