repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git]
/
compiler-rt
/
test
/
sanitizer_common
/
TestCases
/
NetBSD
/
uid_from_user.cpp
blob
4cc1366aad4b0ffcf6344293f4343c7ec8545722
1
// RUN: %clangxx -O0 -g %s -o %t && %run %t
2
3
#include <pwd.h>
4
#include <stdlib.h>
5
6
int
main
(
void
) {
7
uid_t nobody
;
8
9
if
(
uid_from_user
(
"nobody"
, &
nobody
) == -
1
)
10
exit
(
1
);
11
12
if
(
nobody
)
13
exit
(
0
);
14
15
return
0
;
16
}