getgroups method

int getgroups(
  1. int __size,
  2. Pointer<Uint32> __list
)

Implementation

int getgroups(
  int __size,
  ffi.Pointer<ffi.Uint32> __list,
) {
  return _getgroups(
    __size,
    __list,
  );
}