blob: 6d3538174e231cfd8e0bd5db26b0e29284b73197 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#include "common.h"
#include <unistd.h>
int main(int argc, char** argv) {
gid_t list[8] = {0};
getgroups(6, list);
CHK_FAIL_START
getgroups(argc, list);
CHK_FAIL_END
puts((const char*)list);
return ret;
}
|