kern
view src/klibc/stdlib.h @ 12:eaec918de072
- fixed the scrolling issue
- other minor crap
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Tue, 22 Feb 2011 18:51:44 +0200 |
parents | 662ff2170531 |
children | bdd9bf70269d |
line source
1 #ifndef STDLIB_H_
2 #define STDLIB_H_
4 #include <inttypes.h>
6 typedef int32_t ssize_t;
7 typedef uint32_t size_t;
9 int atoi(const char *str);
10 long atol(const char *str);
12 void itoa(int val, char *buf, int base);
13 void utoa(unsigned int val, char *buf, int base);
15 #endif /* STDLIB_H_ */