aboutsummaryrefslogtreecommitdiff
path: root/test/sanitizer_common/TestCases/NetBSD/group_from_gid.cc
blob: eb39da7b2b50434bd4367ae95a861a7cc115d69e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// RUN: %clangxx -O0 -g %s -o %t && %run %t

#include <grp.h>
#include <stdlib.h>
#include <string.h>

int main(void) {
  const char *nobody;

  if (!(nobody = group_from_gid(0, 0)))
    exit(1);

  if (strlen(nobody))
    exit(0);

  return 0;
}