mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-15 11:20:03 +00:00
12 lines
123 B
C
12 lines
123 B
C
|
#include <u.h>
|
||
|
#define NOPLAN9DEFINES
|
||
|
#include <libc.h>
|
||
|
|
||
|
void*
|
||
|
p9malloc(ulong n)
|
||
|
{
|
||
|
if(n == 0)
|
||
|
n++;
|
||
|
return malloc(n);
|
||
|
}
|