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