plan9fox/sys/src/ape/lib/ap/plan9/getgid.c
2011-03-30 19:35:09 +03:00

22 lines
306 B
C

#include <sys/types.h>
#include <grp.h>
#include <unistd.h>
/*
* BUG: assumes group that is same as user name
* is the one wanted (plan 9 has no "current group")
*/
gid_t
getgid(void)
{
struct group *g;
g = getgrnam(getlogin());
return g? g->gr_gid : 1;
}
gid_t
getegid(void)
{
return getgid();
}