Files
clang-p2996/compiler-rt/test/sanitizer_common/TestCases/NetBSD/user_from_uid.cpp
Nico Weber 74989aff53 compiler-rt: Rename cc files below test/sanitizer_common to cpp
See r367803 and similar other changes.

llvm-svn: 367863
2019-08-05 13:57:03 +00:00

18 lines
246 B
C++

// RUN: %clangxx -O0 -g %s -o %t && %run %t
#include <pwd.h>
#include <stdlib.h>
#include <string.h>
int main(void) {
const char *nobody;
if (!(nobody = user_from_uid(0, 0)))
exit(1);
if (strlen(nobody))
exit(0);
return 0;
}