home *** CD-ROM | disk | FTP | other *** search
/ OpenStep 4.2J (Developer) / os42jdev.iso / NextDeveloper / Source / GNU / cctools / include / stuff / allocate.h next >
Encoding:
Text File  |  1995-01-21  |  281 b   |  14 lines

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