Sign in
plan9port
/
plan9
/
91c13e54b5d631b65e2f8344d5e0abd058f78ba1
/
.
/
src
/
lib9
/
malloc.c
blob: b75d2f07f5d7cbfb7a3f170591cfa14822729b59 [
file
] [
log
] [
blame
]
#include
<u.h>
#define
NOPLAN9DEFINES
#include
<libc.h>
void
*
p9malloc
(
ulong n
)
{
if
(
n
==
0
)
n
++;
return
malloc
(
n
);
}