1 2 #include "one.h" 3 #include "two.h" 4 #incldue "three.h" 5 6 # include "permitted.h" 7 8 #include "ext/good.c" 9 #include "bad.c" 10 11 int 12 i_am_a_function(void) 13 { 14 call(); 15 call(); 16 /* comment 17 18 another */ 19 20 return 3; 21 } 22 23 # include "five.h" 24 25 long 26 another_function(long x, 27 long y) 28 { 29 int abcd; 30 31 abcd = x+y; 32 abcd *= abcd; 33 34 /* comment here */ 35 36 return abcd + 37 abcd + 38 abcd; 39 } 40 41 /* And a comment to grow! */