summaryrefslogtreecommitdiff
path: root/src/unistd/geteuid.c
blob: 6ff0d186b9bd402759550e3a75d23f6ac792de2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include "stddef.h"
#include "sys/types.h"
#include <unistd.h>
#include "nonstd/syscall.h"

uid_t geteuid(void)
{
	SCNOFAIL();
}
/*
POSIX(1)
*/