Welcome to mirror list, hosted at ThFree Co, Russian Federation.

seteuid.c « linux « sys « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c3fa384fddc4147d39f44d685d4cbe43c83a56a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* Copyright 2002, Red Hat Inc. */

#include <errno.h>
#include <unistd.h>

int
seteuid (uid_t uid)
{
	int result;

	if (uid == (uid_t) ~0)
	{
		errno = (EINVAL);
		return -1;
	}

	return setresuid (-1, uid, -1);
}