home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Fred Fish Collection 1.5
/
ffcollection-1-5-1992-11.iso
/
ff_disks
/
300-399
/
ff319.lzh
/
CNewsSrc
/
uupc.lzh
/
include
/
alloc.h
next >
Wrap
C/C++ Source or Header
|
1989-06-30
|
602b
|
20 lines
#ifndef ALLOC_H
#define ALLOC_H
#ifndef notdef
extern char *malloc(), *realloc(), *emalloc();
extern char *nemalloc(), *strsave(), *str3save();
#else /* notdef */
/* setup for UT debugging malloc */
#define MALLOC_TRACE
#define TRACE
#include "malloc.h" /* defines CSRIMALLOC */
extern char *_nemalloc(), *_strsave(), *_str3save();
#define nemalloc(x) _nemalloc((x), __FILE__, __LINE__)
#define strsave(x) _strsave((x), __FILE__, __LINE__) /* TODO: conflict with ma
loc.h; fix */
#define str3save(x, y, z) _str3save((x), y, z, __FILE__, __LINE__)
#endif /* notdef */
#endif /* ALLOC_H */