zdiff would exit 2 (error) rather than 1 for differences
[gzip.git] / primos / include / stdlib.h
blob49fbfc38179d165528a8c088d39ce9166e79940f
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 */
9 #ifndef __STDLIB_H__
10 #define __STDLIB_H__
12 extern char *malloc();
13 extern char *calloc();
15 #endif