| 1 | // RUN: %clangxx -O0 -g %s -o %t && %run %t |
|---|---|
| 2 | |
| 3 | #include <grp.h> |
| 4 | #include <stdlib.h> |
| 5 | |
| 6 | int main(void) { |
| 7 | gid_t nobody; |
| 8 | |
| 9 | if (gid_from_group("nobody", &nobody) == -1) |
| 10 | exit(status: 1); |
| 11 | |
| 12 | if (nobody) |
| 13 | exit(status: 0); |
| 14 | |
| 15 | return 0; |
| 16 | } |
| 17 |
