fat: Make mangle behavior similar to the standard one
[profile/ivi/syslinux.git] / dos / stdlib.h
1 #ifndef STDLIB_H
2 #define STDLIB_H
3
4 typedef int ssize_t;
5 typedef unsigned int size_t;
6
7 void __attribute__ ((noreturn)) exit(int);
8
9 void *malloc(size_t);
10 void *calloc(size_t, size_t);
11 void free(void *);
12
13 extern unsigned long int strtoul(const char *nptr,
14                                   char **endptr, int base);
15
16 #endif