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

uid_t getuid(void)
{
	return syscall0(__NR_getuid32);
}