You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
311 B
15 lines
311 B
16 years ago
|
#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
|