| 9 | #endif |
| 10 | |
| 11 | int main(int ac, char **av) |
| 12 | { |
| 13 | int i; |
| 14 | for(i=0; 1; i++) { |
| 15 | int process_id = PIDFUNC(); |
| 16 | |
| 17 | printf("Hello, world! pid:%d i:%d\n", process_id, i); |
| 18 | int j; |
| 19 | for(j=0; j<100000000; ++j) |
| 20 | i = i*7; |
| 21 | } |
| 22 | return 11; |
| 23 | } |
nothing calls this directly
no outgoing calls
no test coverage detected