blob: 67289d5435c349823872372688f030482551c0c8 (
plain)
1
2
3
4
5
6
7
8
9
|
#include "asm/unistd_64.h" // for __NR_getuid
#include <syscall.h> // for __syscall_0, syscall
#include <unistd.h> // for getuid, uid_t
uid_t getuid(void)
{
return syscall(getuid);
}
|