This website requires JavaScript.
Explore
Help
Sign In
fluencelabs
/
musl
Watch
1
Star
0
Fork
0
You've already forked musl
mirror of
https://github.com/fluencelabs/musl
synced
2025-06-06 03:21:36 +00:00
Code
Issues
Projects
Releases
Wiki
Activity
3e7f186ea1
Branches
Tags
View all branches
musl
/
src
/
unistd
/
getuid.c
8 lines
96 B
C
Raw
Normal View
History
Unescape
Escape
initial check-in, version 0.5.0
2011-02-12 00:22:29 -05:00
#
include
<unistd.h>
#
include
"syscall.h"
uid_t
getuid
(
void
)
{
omit errno update path for syscalls that cannot fail
2011-04-21 21:52:41 -04:00
return
__syscall
(
SYS_getuid
)
;
initial check-in, version 0.5.0
2011-02-12 00:22:29 -05:00
}
Reference in New Issue
Copy Permalink