aboutsummaryrefslogtreecommitdiff
path: root/lib/mlibc/options/linux/generic/sys-fsuid.cpp
blob: 653456cc3de38531c3957762eb07864242777cb2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <bits/ensure.h>
#include <sys/fsuid.h>

int setfsuid(uid_t) {
	__ensure(!"Not implemented");
	__builtin_unreachable();
}

int setfsgid(gid_t) {
	__ensure(!"Not implemented");
	__builtin_unreachable();
}