home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / gnu / gzip-1.2.4.tar.gz / gzip-1.2.4.tar / gzip-1.2.4 / primos / include / stdlib.h < prev    next >
C/C++ Source or Header  |  1993-05-25  |  227b  |  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.