ack/mach/minix/libsys/_getgid.c

10 lines
184 B
C
Raw Normal View History

#include <lib.h>
#include <sys/types.h>
#define getgid _getgid
1991-09-19 12:46:16 +00:00
#include <unistd.h>
PUBLIC gid_t getgid()
{
return((gid_t)_callm1(MM, GETGID, 0, 0, 0, NIL_PTR, NIL_PTR, NIL_PTR));
}