mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 22:04:21 +00:00
20 lines
233 B
C
Vendored
20 lines
233 B
C
Vendored
#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
|