Adding upstream version 4.00~pre54+dfsg.
[syslinux-debian/hramrach.git] / dos / stdlib.h
blob71af6907ab2a037bd6ae338293238e259f7bd3ba
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 #endif