2 * Copyright 1993 NeXT, Inc.
5 * Malloc interface to zalloc.
17 return zinit(start,size,nodes);
20 void *malloc(size_t size)
25 /* This is the simplest way possible. Should fix this. */
26 void *realloc(void *start, size_t newsize)
28 void *newstart = zalloc(newsize);
29 bcopy(start, newstart, newsize);
34 void free(void *start)