summaryrefslogtreecommitdiff
path: root/os/port/noenv.c
blob: 446945ac8f1db3b44355a1ba16c86e1ce1023ca4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/*
 * use this when devenv.c not used
 */
#include "u.h"
#include "../port/lib.h"
#include "../port/error.h"
#include "mem.h"
#include	"dat.h"
#include	"fns.h"

/*
 * null kernel interface
 */
Egrp*
newegrp(void)
{
	return nil;
}

void
closeegrp(Egrp*)
{
}

void
egrpcpy(Egrp*, Egrp*)
{
}

void
ksetenv(char*, char*, int)
{
}