Sign in
llvm
/
llvm-project
/
41d59a36459ea99ada4819a26072366f77484f87
/
.
/
compiler-rt
/
test
/
sanitizer_common
/
TestCases
/
NetBSD
/
user_from_uid.cpp
blob: bb098525a4762cb3758ac67538b3c000140670ee [
file
] [
log
] [
blame
]
// 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
;
}