Improved compatibility with other Unix systems.
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
/*
|
||||
setgroups.c
|
||||
*/
|
||||
|
||||
#include <errno.h>
|
||||
#include <unistd.h>
|
||||
|
||||
int setgroups(int ngroups, const gid_t *gidset)
|
||||
{
|
||||
/* Not implemented */
|
||||
|
||||
errno= ENOSYS;
|
||||
return -1;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user