brintos

brintos / llvm-project-archived public Read only

0
0
Text · 195 B · b91ccfc Raw
22 lines · c
1#include <stdio.h>2 3int4test_func()5{6  return printf("I am a test function.");7}8 9void10break_on_me()11{12  printf("I was called.\n");13}14 15int16main()17{18  break_on_me();19  test_func();20  return 0;21}22