]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - packages/Python/lldbsuite/test/functionalities/process_launch/print_env.cpp
Vendor import of lldb trunk r256945:
[FreeBSD/FreeBSD.git] / packages / Python / lldbsuite / test / functionalities / process_launch / print_env.cpp
1 #include <stdio.h>
2 #include <string.h>
3 #include <stdlib.h>
4
5 int main (int argc, char **argv)
6 {
7   char *evil = getenv("EVIL");
8   puts(evil);
9
10   return 0;
11 }