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

uid_t geteuid(void)
{
	return syscall(SYS_geteuid);
}