1 #ifndef _SYS_FSUID_H 2 #define _SYS_FSUID_H 3 4 #ifdef __cplusplus 5 extern "C" { 6 #endif 7 8 #define __NEED_uid_t 9 #define __NEED_gid_t 10 11 #include <bits/alltypes.h> 12 13 int setfsuid(uid_t); 14 int setfsgid(gid_t); 15 16 #ifdef __cplusplus 17 } 18 #endif 19 20 #endif 21