summaryrefslogtreecommitdiffstats
path: root/src/lib/kStuff/kLdr/testcase/tst-2.c
blob: 6110a4b33c383c03b0b54831ecb8c252b6f287d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include "tst.h"

MY_IMPORT(int) FuncA(void);
MY_IMPORT(int) FuncB(void);
MY_IMPORT(int) FuncC(void);
MY_IMPORT(int) FuncD(void);

int main()
{
    printf("graph:\n"
           "  tst-2 -> b -> a\n"
           "           c -> a\n"
           "           d -> a\n"
           "           a\n");
    return FuncA() + FuncB() + FuncC() + FuncD();
}