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
[flang] Fix length handling in character kind implicit conversion (#74586)
[llvm-project.git]
/
libc
/
test
/
integration
/
src
/
unistd
/
execv_test_normal_exit.cpp
blob
567bd7d47d838b4b40703d47fed72f1858b94d63
1
#include <signal.h>
2
#include <stdlib.h>
3
#include <unistd.h>
4
5
int
main
() {
6
char
*
env
=
getenv
(
"EXECV_TEST"
);
7
if
(
env
==
nullptr
)
8
raise
(
SIGUSR1
);
9
return
0
;
10
}