blob: 453f2628282bd98edcb86a5576829cc867aeaa3a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifdef LIB_DBG
/* We are building in testLib4libdbg. Provide the correct symbol. */
int testLib4libdbg(void)
{
return 0;
}
#else
/* We are not building in testLib4libdbg. Poison the symbol. */
extern int testLib4libdbg_noexist(void);
int testLib4libdbg(void)
{
return testLib4libdbg_noexist();
}
#endif
|