aboutsummaryrefslogtreecommitdiff
path: root/packages/Python/lldbsuite/test/functionalities/process_launch/print_env.cpp
blob: 8c6df8ea01a4d8b0249b4c0bf7217ed72b3d7067 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#include <stdio.h>
#include <string.h>
#include <stdlib.h>

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

  return 0;  // Set breakpoint here.
}