1
0
mirror of https://github.com/fluencelabs/musl synced 2025-06-06 03:21:36 +00:00

8 lines
96 B
C
Raw Normal View History

2011-02-12 00:22:29 -05:00
#include <unistd.h>
#include "syscall.h"
uid_t getuid(void)
{
return __syscall(SYS_getuid);
2011-02-12 00:22:29 -05:00
}