README: document the need for /usr/include/uuid/uuid.h
[syslinux.git] / dos / stdlib.h
blobd34670560857567fb70746c862e2247e2b55ed02
1 #ifndef STDLIB_H
2 #define STDLIB_H
4 typedef int ssize_t;
5 typedef unsigned int size_t;
7 void __attribute__ ((noreturn)) exit(int);
9 void *malloc(size_t);
10 void *calloc(size_t, size_t);
11 void free(void *);
13 extern unsigned long int strtoul(const char *nptr,
14 char **endptr, int base);
16 #endif