kern

annotate src/klibc/stdlib.h @ 4:0489a34ab348

- reverted the trunk back to hardware scrolling - added a missing include (ctype.h in term.c) - added a comment explaining what memset16 does - beefed up the README file
author John Tsiombikas <nuclear@member.fsf.org>
date Fri, 10 Dec 2010 03:44:34 +0200
parents
children 633e35c64772
rev   line source
nuclear@0 1 #ifndef STDLIB_H_
nuclear@0 2 #define STDLIB_H_
nuclear@0 3
nuclear@0 4 #include <inttypes.h>
nuclear@0 5
nuclear@0 6 typedef int32_t ssize_t;
nuclear@0 7 typedef uint32_t size_t;
nuclear@0 8
nuclear@0 9 #endif /* STDLIB_H_ */