llvm-project/lldb/test/API/commands/process/launch/print_env.cpp

11 lines
166 B
C++

#include <stdio.h>
#include <string.h>
#include <stdlib.h>
int main (int argc, char **argv)
{
char *evil = getenv("EVIL");
return 0; // Set breakpoint here.
}