aboutsummaryrefslogtreecommitdiff
path: root/src/lib9/get9root.c
blob: 3ef704c93d8d18a7dc6f33fe85e2e71d1a1dd162 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#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;
}