Sign in
plan9port
/
plan9
/
9bcf13737602ccefa95214df5ca2e118f332ebd0
/
.
/
src
/
lib9
/
get9root.c
blob: 3ef704c93d8d18a7dc6f33fe85e2e71d1a1dd162 [
file
] [
log
] [
blame
]
#include
<u.h>
#include
<libc.h>
char
*
get9root
(
void
)
{
static
char
*
s
;
if
(
s
)
return
s
;
if
((
s
=
getenv
(
"PLAN9"
))
!=
0
)
return
s
;
/* could do better - search $PATH */
s
=
"/usr/local/plan9"
;
return
s
;
}