home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / Tools / gzip-1.2.4 / primos / include / stdlib.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-05-03  |  227 b   |  17 lines

  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.  
  17.