MCPcopy Create free account
hub / github.com/Vector35/debugger / main

Function main

test/src/helloworld_loop.c:11–23  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

9#endif
10
11int 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}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected