Deleted Added
full compact
32c32
< * $FreeBSD: head/sys/sys/malloc.h 184205 2008-10-23 15:53:51Z des $
---
> * $FreeBSD: head/sys/sys/malloc.h 184210 2008-10-23 19:57:13Z des $
169a170,176
> * Deprecated macro versions of not-quite-malloc() and free().
> */
> #define MALLOC(space, cast, size, type, flags) \
> ((space) = (cast)malloc((u_long)(size), (type), (flags)))
> #define FREE(addr, type) free((addr), (type))
>
> /*