kern
view src/klibc/stdlib.h @ 65:e49fdda97607
changed the makefile to only pass "emulation" (-m32 -melf_i386) only when not
running on a i386 system. Also made that work for freebsd too
author | John Tsiombikas <nuclear@mutantstargoat.com> |
---|---|
date | Wed, 05 Oct 2011 02:34:58 +0300 |
parents | 633e35c64772 |
children | f83f50c17c3b |
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 /* defined in malloc.c */
16 void *malloc(size_t sz);
17 void free(void *ptr);
19 #endif /* STDLIB_H_ */