summaryrefslogtreecommitdiff
path: root/src/unistd/geteuid.c
blob: cdec631a6aea1612f103cc5213347f71205e5fed (plain) (blame)
1
2
3
4
5
6
7
#include <unistd.h>
#include "syscall.h"

uid_t geteuid(void)
{
	return syscall0(__NR_geteuid);
}