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

MY_IMPORT(int) FuncD(void);

MY_EXPORT(int) FuncA(void)
{
    return FuncD() | (g_pszName[0] == 'a' ? 0x42 : 0x0001);
}