Home | History | Annotate | Line # | Download | only in include
stdlib.h revision 1.1
      1  1.1  riastrad #include <sys/cdefs.h>
      2  1.1  riastrad #include <sys/malloc.h>
      3  1.1  riastrad #undef malloc
      4  1.1  riastrad #undef free
      5  1.1  riastrad #define	malloc(size)	kern_malloc(size, 0)
      6  1.1  riastrad #define	free(addr)	kern_free(addr)
      7  1.1  riastrad 
      8  1.1  riastrad #define abort()		panic("abort")
      9