brintos

brintos / llvm-project-archived public Read only

0
0
Text · 225 B · 40aa484 Raw
15 lines · c
1#include <stdio.h>2#include <stdlib.h>3#ifdef _WIN324#include <stdlib.h>5#else6#include <unistd.h>7#endif8 9int main(int argc, char *argv[]) {10  const char *foo = getenv("FOO");11  int counter = 1;12 13  return 0; // breakpoint14}15