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