Home | History | Annotate | Download | only in dist

Lines Matching defs:malloc

1 /*	$NetBSD: malloc.c,v 1.1.1.1 2016/01/13 21:42:18 christos Exp $	*/
3 /* Memory allocator `malloc'.
27 #include <malloc.h>
33 /* Debugging hook for `malloc'. */
39 /* Block information table. Allocated with align/__free (not malloc/free). */
165 malloc (size)
173 /* ANSI C allows `malloc (0)' to either return NULL, or to return a
177 expects `malloc (0)' to return non-NULL and breaks otherwise.
238 result = malloc (BLOCKSIZE);
360 return malloc (size);