syslinux-3.08-2 sources from FC4
[bootcd.git] / syslinux / 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 free(void *);
11
12 #endif