mirror of
git://git.musl-libc.org/musl
synced 2024-12-17 12:14:42 +00:00
57d5fff5f7
one file was reusing another file's macro name, and many had inconsistent underscores and application of SYS prefix, etc. patch by Szabolcs Nagy (nsz)
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
|