xref: /llvm-project/lldb/test/API/commands/process/launch/print_env.cpp (revision 99451b4453688a94c6014cac233d371ab4cc342d)
1 #include <stdio.h>
2 #include <string.h>
3 #include <stdlib.h>
4 
main(int argc,char ** argv)5 int main (int argc, char **argv)
6 {
7   char *evil = getenv("EVIL");
8 
9   return 0;  // Set breakpoint here.
10 }
11