Imported Upstream version 1.4
[debian/gzip] / primos / include / stdlib.h
1 /*
2 ** stdlib.h
3 **
4 ** Emulation of the Unix stdlib.h header file for PRIMOS
5 **
6 ** Author: Peter Eriksson <pen@lysator.liu.se>
7 */
8
9 #ifndef __STDLIB_H__
10 #define __STDLIB_H__
11
12 extern char *malloc();
13 extern char *calloc();
14
15 #endif
16