Sign in
llvm
/
lldb
/
release_38
/
.
/
packages
/
Python
/
lldbsuite
/
test
/
functionalities
/
process_launch
/
print_env.cpp
blob: cbb9b2175916389d7290552a804e041dce08aaa5 [
file
] [
log
] [
blame
]
#include
<stdio.h>
#include
<string.h>
#include
<stdlib.h>
int
main
(
int
argc
,
char
**
argv
)
{
char
*
evil
=
getenv
(
"EVIL"
);
puts
(
evil
);
return
0
;
}