home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / C / Samples / CSAPE32.ARJ / INCLUDE / OAKALLOC.H < prev    next >
C/C++ Source or Header  |  1990-03-28  |  559b  |  25 lines

  1. /*
  2.     oakalloc.h  
  3.  
  4.     % 'oakland' insulated malloc functions headers
  5.  
  6.     OWL 1.2
  7.     Copyright (c) 1986, 1987, 1988 by Oakland Group, Inc.
  8.     ALL RIGHTS RESERVED.
  9.  
  10.     Revision History:
  11.     -----------------
  12.      3/28/90 jmd    ansi-fied
  13. */
  14.  
  15. /* This is here for general access. The rest are in oaktag.h */
  16. #define OA_NOTAG    1
  17.  
  18. /* OAKALLOC.C */
  19. extern VOID       *omalloc(int tag, SIZE_T size);
  20. extern VOID       *ocalloc(int tag, SIZE_T n, SIZE_T size);
  21. extern VOID       *orealloc(int tag, VOID *buffer, SIZE_T size);
  22. extern void        ofree(int tag, VOID *buffer);
  23.  
  24.  
  25.