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

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

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