brintos

brintos / llvm-project-archived public Read only

0
0
Text · 136 B · 61a5e9d Raw
12 lines · cpp
1#include <stdio.h>2 3int a_function_to_call()4{ 5    return 0;6}7 8int main()9{10    printf("%d\n", a_function_to_call()); // breakpoint11}12