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