File: program.c

package info (click to toggle)
cflow 1%3A1.8-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,252 kB
  • sloc: sh: 9,697; ansic: 9,203; lex: 466; lisp: 271; makefile: 185; awk: 87; sed: 16
file content (32 lines) | stat: -rw-r--r-- 337 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#include <stdio.h>

void fun1(void) {
}

void fun2(void) {
}

void fun3(void) {
        fun4();
}

void fun4(void) {
        fun5();
}

void fun5(void) {
}

void fun_outof_main() {
        fun5();
}

int main(int argc, char **argv) {
        printf("starting...\n");

        fun1();
        fun2();
        fun3();

        return 0;
}