blob: 40aa484b538109af9e723a56853e705760090918 [file] [log] [blame]
#include <stdio.h>
#include <stdlib.h>
#ifdef _WIN32
#include <stdlib.h>
#else
#include <unistd.h>
#endif
int main(int argc, char *argv[]) {
const char *foo = getenv("FOO");
int counter = 1;
return 0; // breakpoint
}