ocaml/otherlibs/unix/getegid.c

8 lines
116 B
C

#include <mlvalues.h>
#include "unix.h"
value unix_getegid() /* ML */
{
return Val_int(getegid());
}