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

#include <stdio.h>
#include <string.h>
#include <stdlib.h>

int main (int argc, char **argv)
{
  char *evil = getenv("EVIL");

  return 0;  // Set breakpoint here.
}