repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
cuserid: support invocation with a null pointer argument
[musl.git]
/
src
/
unistd
/
setuid.c
blob
602ecbbf44b3d06b11a73196a13e9046eb217cb7
1
#include <unistd.h>
2
#include
"syscall.h"
3
#include
"libc.h"
4
5
int
setuid
(
uid_t uid
)
6
{
7
return
__setxid
(
SYS_setuid
,
uid
,
0
,
0
);
8
}