brintos

brintos / llvm-project-archived public Read only

0
0
Text · 200 B · f5c5d19 Raw
16 lines · c
1int foo(void);2static int static_value = 0;3 4int5bar()6{7    static_value++;8    return static_value;9}10 11int main (int argc, char const *argv[])12{13    bar(); // breakpoint_in_main14    return foo();15}16