Sign in
llvm
/
llvm-project
/
890c4bece26e005cd9fa5511fe0efa7307794de5
/
.
/
libc
/
test
/
integration
/
src
/
unistd
/
execv_test_normal_exit.cpp
blob: 567bd7d47d838b4b40703d47fed72f1858b94d63 [
file
] [
log
] [
blame
]
#include
<signal.h>
#include
<stdlib.h>
#include
<unistd.h>
int
main
()
{
char
*
env
=
getenv
(
"EXECV_TEST"
);
if
(
env
==
nullptr
)
raise
(
SIGUSR1
);
return
0
;
}