brintos

brintos / llvm-project-archived public Read only

0
0
Text · 172 B · 4241ee3 Raw
10 lines · c
1#include "foo.h"2#include <stdio.h>3 4int global_shared = 897;5int main(void) {6  puts("This is a shared library test...");7  foo(); // Set breakpoint 0 here.8  return 0;9}10