15 lines
225 B
C
15 lines
225 B
C
#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
|
|
}
|