summaryrefslogtreecommitdiffstats
path: root/src/lib/kStuff/kLdr/testcase/tst-0-b.c
blob: 286b17908648ed6fbbb8c7628e79685dc234e857 (plain)
1
2
3
4
5
6
7
8
9
10
#include "tst.h"
const char *g_pszName = "b";

MY_IMPORT(int) FuncD(void);

MY_EXPORT(int) FuncB(void)
{
    return FuncD() | (g_pszName[0] == 'b' ? 0x4200 : 0x0010);
}