musl - an implementation of the standard library for Linux-based systems
blob: 1bae44186fdb791f627633ce8a0001d7f40830c3 (
plain) (
blame)
1
2
3
4
5
6
7
|
#include <sys/fsuid.h>
#include "syscall.h"
int setfsuid(uid_t uid)
{
return syscall(SYS_setfsuid, uid);
}
|