Warning: Attempt to read property "date" on null in /usr/local/www/websvn.planix.org/blame.php on line 247

Warning: Attempt to read property "msg" on null in /usr/local/www/websvn.planix.org/blame.php on line 247
WebSVN – planix.SVN – Blame – /os/branches/feature_fixcpp/sys/src/ape/lib/ap/plan9/getuid.c – Rev 2

Subversion Repositories planix.SVN

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 - 1
#include <sys/types.h>
2
#include <pwd.h>
3
#include <unistd.h>
4
 
5
uid_t
6
getuid(void)
7
{
8
	struct passwd *p;
9
	p = getpwnam(getlogin());
10
	return p? p->pw_uid : 1;
11
}
12
 
13
uid_t
14
geteuid(void)
15
{
16
	return getuid();
17
}