mirror of
git://git.musl-libc.org/musl
synced 2024-12-17 04:05:05 +00:00
4619901ec4
patch by Jeremy Huntwork
21 lines
225 B
C
21 lines
225 B
C
#ifndef _FSUID_H
|
|
#define _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
|