blob: 077cf18fb2ad93953d2df514bb3367320d1d9515 [file] [log] [blame]
Viet-Trung Luu96b05c12016-01-11 11:26:36 -08001#include <unistd.h>
2#include "syscall.h"
3
George Kulakowski17e3b042016-02-18 15:59:50 -08004int getgroups(int count, gid_t list[]) {
5 return syscall(SYS_getgroups, count, list);
Viet-Trung Luu96b05c12016-01-11 11:26:36 -08006}