mirror of
https://github.com/ziglang/zig.git
synced 2024-12-04 19:09:32 +00:00
21 lines
233 B
C
21 lines
233 B
C
#ifndef _SYS_FSUID_H
|
|
#define _SYS_FSUID_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define __NEED_uid_t
|
|
#define __NEED_gid_t
|
|
|
|
#include <bits/alltypes.h>
|
|
|
|
int setfsuid(uid_t);
|
|
int setfsgid(gid_t);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|