src/nmalloc.h

/* [<][>]
[^][v][top][bottom][index][help] */

FUNCTIONS

This source file includes following functions.
  1. XMmalloc
  2. XMcalloc
  3. XMstrdup
  4. XMfree
  5. strXMListAdd

/* $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__))
/* [<][>][^][v][top][bottom][index][help] */
#define XMcalloc(x,y) nc_XMcalloc((x), (y), __FILE__ ":" STR(__LINE__))
/* [<][>][^][v][top][bottom][index][help] */
#define XMstrdup(x) nc_XMstrdup((x), __FILE__ ":" STR(__LINE__))
/* [<][>][^][v][top][bottom][index][help] */
#define XMfree(x) nc_XMfree((x), __FILE__ ":" STR(__LINE__))
/* [<][>][^][v][top][bottom][index][help] */
#define strXMListAdd(x,y) nc_strXMListAdd((x), (y), __FILE__ ":" STR(__LINE__))
/* [<][>][^][v][top][bottom][index][help] */

#include "nmalloc.ext"

#endif /* NMALLOC_H */

/* [<][>][^][v][top][bottom][index][help] */