diff options
Diffstat (limited to 'packages/Python/lldbsuite/test/functionalities/process_launch/print_env.cpp')
-rw-r--r-- | packages/Python/lldbsuite/test/functionalities/process_launch/print_env.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/packages/Python/lldbsuite/test/functionalities/process_launch/print_env.cpp b/packages/Python/lldbsuite/test/functionalities/process_launch/print_env.cpp new file mode 100644 index 0000000..cbb9b21 --- /dev/null +++ b/packages/Python/lldbsuite/test/functionalities/process_launch/print_env.cpp @@ -0,0 +1,11 @@ +#include <stdio.h> +#include <string.h> +#include <stdlib.h> + +int main (int argc, char **argv) +{ + char *evil = getenv("EVIL"); + puts(evil); + + return 0; +} |