mirror of
https://github.com/AuxXxilium/eudev.git
synced 2025-01-26 17:09:26 +07:00
14 lines
166 B
C
14 lines
166 B
C
/*
|
|
* grp.h
|
|
*/
|
|
|
|
#ifndef _GRP_H
|
|
#define _GRP_H
|
|
|
|
#include <klibc/extern.h>
|
|
#include <sys/types.h>
|
|
|
|
__extern int setgroups(size_t, const gid_t *);
|
|
|
|
#endif /* _GRP_H */
|