summaryrefslogtreecommitdiff
path: root/sys/src/ape/lib/ap/plan9/setuid.c
blob: 2790bffe5248d6c15911a4095a1e5485db299755 (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
setuid(uid_t)
{
	errno = EPERM;
	return -1;
}