ref: ea8e8b255ec88b51af31be5c01de8f55fd4c2e8a
dir: /sys/src/ape/lib/ap/plan9/getuid.c/
#include <sys/types.h>
#include <pwd.h>
#include <unistd.h>
uid_t
getuid(void)
{
struct passwd *p;
p = getpwnam(getlogin());
return p? p->pw_uid : 1;
}
uid_t
geteuid(void)
{
return getuid();
}