More files related to user-level file servers.

Also add acme!
This commit is contained in:
rsc 2003-12-11 17:50:28 +00:00
parent 32f69c36e0
commit b3994ec5c7
35 changed files with 14133 additions and 0 deletions

11
src/lib9/malloc.c Normal file
View file

@ -0,0 +1,11 @@
#include <u.h>
#define NOPLAN9DEFINES
#include <libc.h>
void*
p9malloc(ulong n)
{
if(n == 0)
n++;
return malloc(n);
}