aboutsummaryrefslogtreecommitdiff
path: root/src/unistd/getuid.c
blob: 9aae884d31b04c9c4e146e259f9b73b979655775 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <unistd.h>
#include "syscall.h"

uid_t getuid(void)
{
	return __syscall(SYS_getuid);
}


#ifdef TEST
int
main(void) {
	return 0;
}
#endif