home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.3 (Developer) / NeXT_Developer-3.3.iso / NextDeveloper / Source / GNU / cctools / include / stuff / allocate.h next >
Encoding:
C/C++ Source or Header  |  1991-09-17  |  233 b   |  14 lines

  1. /* defined in allocate.c */
  2. extern void *allocate(
  3.     unsigned long size);
  4.  
  5. extern void *reallocate(
  6.     void *,
  7.     unsigned long size);
  8.  
  9. extern char *savestr(
  10.     const char *s);
  11.  
  12. extern char *makestr(
  13.     const char *args, ...);
  14.