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

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

  return 0;
}