src/nmalloc.h
/* [<][>][^][v][top][bottom][index][help] */
DEFINITIONS
This source file includes following functions.
/* $Id: nmalloc.h,v 1.1.1.1 1998/07/29 15:14:29 proff Exp $
* $Copyright$
*/
#ifndef NMALLOC_H
#define NMALLOC_H
struct mmap_base
{
void *mmap_base;
};
#define XMmalloc(x) nc_XMmalloc((x), __FILE__ ":" STR(__LINE__))
#define XMcalloc(x,y) nc_XMcalloc((x), (y), __FILE__ ":" STR(__LINE__))
#define XMstrdup(x) nc_XMstrdup((x), __FILE__ ":" STR(__LINE__))
#define XMfree(x) nc_XMfree((x), __FILE__ ":" STR(__LINE__))
#define strXMListAdd(x,y) nc_strXMListAdd((x), (y), __FILE__ ":" STR(__LINE__))
#include "nmalloc.ext"
#endif /* NMALLOC_H */