brintos

brintos / llvm-project-archived public Read only

0
0
Text · 127 B · f9b2dd4 Raw
10 lines · cpp
1#include <stdio.h>2 3extern int doTest();4 5int main()6{7    printf("%d\n", doTest()); // Set breakpoint here   8    return 0;9}10