0010-goto.c (111B)
1 int 2 main() 3 { 4 start: 5 goto next; 6 return 1; 7 success: 8 return 0; 9 next: 10 foo: 11 goto success; 12 return 1; 13 }