mirror of
https://github.com/AuxXxilium/eudev.git
synced 2024-12-28 06:35:34 +07:00
15 lines
203 B
C
15 lines
203 B
C
/*
|
|
* sys/fsuid.h
|
|
*/
|
|
|
|
#ifndef _SYS_FSUID_H
|
|
#define _SYS_FSUID_H
|
|
|
|
#include <klibc/extern.h>
|
|
#include <sys/types.h>
|
|
|
|
__extern int setfsuid(uid_t);
|
|
__extern int setfsgid(gid_t);
|
|
|
|
#endif /* _SYS_FSUID_H */
|