/***********************************************************************/ /* */ /* Objective Caml */ /* */ /* Xavier Leroy, projet Cristal, INRIA Rocquencourt */ /* */ /* Copyright 1996 Institut National de Recherche en Informatique et */ /* Automatique. Distributed only by permission. */ /* */ /***********************************************************************/ /* $Id$ */ #include #include #ifdef HAS_GETGROUPS #include #include #include "unixsupport.h" value unix_getgroups() /* ML */ { int gidset[NGROUPS]; int n; value res; int i; n = getgroups(NGROUPS, gidset); if (n == -1) uerror("getgroups", Nothing); res = alloc_tuple(n); for (i = 0; i < n; i++) Field(res, i) = Val_int(gidset[i]); return res; } #else value unix_getgroups() { invalid_argument("getgroups not implemented"); } #endif