plan9port/src/lib9/get9root.c
rsc 70bcc7804e More files.
More files.
2004-03-25 23:08:53 +00:00

13 lines
143 B
C

#include <u.h>
#include <libc.h>
char*
get9root(void)
{
char *s;
if((s = getenv("PLAN9")) != 0)
return s;
return "/usr/local/plan9";
}