summaryrefslogtreecommitdiff
path: root/sys/src/ape/lib/ap/plan9/setgid.c
blob: 0411b06a571bdc1733206b398a6cf3b3c2991c04 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <sys/types.h>
#include <unistd.h>
#include <errno.h>

/*
 * BUG: never works
 */

int
setgid(gid_t)
{
	errno = EPERM;
	return -1;
}