home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
QBasic & Borland Pascal & C
/
Delphi5.iso
/
C
/
Samples
/
CSAPE32.ARJ
/
INCLUDE
/
OAKALLOC.H
< prev
next >
Wrap
C/C++ Source or Header
|
1990-03-28
|
559b
|
25 lines
/*
oakalloc.h
% 'oakland' insulated malloc functions headers
OWL 1.2
Copyright (c) 1986, 1987, 1988 by Oakland Group, Inc.
ALL RIGHTS RESERVED.
Revision History:
-----------------
3/28/90 jmd ansi-fied
*/
/* This is here for general access. The rest are in oaktag.h */
#define OA_NOTAG 1
/* OAKALLOC.C */
extern VOID *omalloc(int tag, SIZE_T size);
extern VOID *ocalloc(int tag, SIZE_T n, SIZE_T size);
extern VOID *orealloc(int tag, VOID *buffer, SIZE_T size);
extern void ofree(int tag, VOID *buffer);