NEW
#define NEW(p) if (((p) = memget(sizeof *(p))) != NULL) \
#define NEW(type) ((type *) xmalloc(sizeof(type)))
#define NEW 0x0002 /* a new entry to be extracted */
#define NEW(type, ptr, where, action) NEWARRAY(type, ptr, 1, where, action)
#define NEW(type, ptr, where, action) NEWARRAY(type, ptr, 1, where, action)
#define NEW(type, ptr, where, action) NEWARRAY(type, ptr, 1, where, action)
#define NEW 2
#define NEW 2
#define NEW(size) malloc(size, M_DEVBUF, M_NOWAIT)
#define NEW(size) malloc(size)
# define NEW(type) (type *) malloc(sizeof (type))
#define NEW(type) (type *)malloc(sizeof (type))
#define NEW(a) (a *) emalloc(sizeof(a))
#define NEW(type, ptr, action) NEWARRAY(type, ptr, 1, action)