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

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

int main()
{
    unsigned u;
    u = FuncA() | FuncB() | FuncC();
    return u == 0x42424242 ? 0 : 1;
}