diff options
Diffstat (limited to 'otherlibs/unix/getgid.c')
-rw-r--r-- | otherlibs/unix/getgid.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/otherlibs/unix/getgid.c b/otherlibs/unix/getgid.c new file mode 100644 index 000000000..81debfa05 --- /dev/null +++ b/otherlibs/unix/getgid.c @@ -0,0 +1,7 @@ +#include <mlvalues.h> +#include "unix.h" + +value unix_getgid() /* ML */ +{ + return Val_int(getgid()); +} |