summaryrefslogtreecommitdiffstats
path: root/test cases/linuxlike/12 subprojects in subprojects/subprojects/b/b.c
blob: 45c9348f71d8774256d308be25ba921ece8f1071 (plain)
1
2
3
4
5
6
7
8
9
10
11
#if defined(WITH_C)
#include "c.h"
#endif

int b_fun(void){
#if defined(WITH_C)
return c_fun();
#else
return 0;
#endif
}