Resync
[CMakeLuaTailorHgBridge.git] / CMakeLua / Tests / ExportImport / Export / testLib4libdbg.c
blob453f2628282bd98edcb86a5576829cc867aeaa3a
1 #ifdef LIB_DBG
2 /* We are building in testLib4libdbg. Provide the correct symbol. */
3 int testLib4libdbg(void)
5 return 0;
7 #else
8 /* We are not building in testLib4libdbg. Poison the symbol. */
9 extern int testLib4libdbg_noexist(void);
10 int testLib4libdbg(void)
12 return testLib4libdbg_noexist();
14 #endif