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

MY_IMPORT(int) FuncD(void);

MY_EXPORT(int) FuncC(void)
{
    return FuncD() | (g_pszName[0] == 'c' ? 0x420000 : 0x0100);
}