home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Interactive Guide / c-cplusplus-interactive-guide.iso / c_ref / csource4 / 292_01 / alloc.h < prev    next >
Encoding:
C/C++ Source or Header  |  1990-07-18  |  130 b   |  9 lines

  1. /* alloc.h */
  2. /* DECUS C */
  3.  
  4. extern    char    *alloc();
  5. extern    char    *malloc();
  6. extern    char    *calloc();
  7. extern    char    *realloc();
  8.  
  9.