summaryrefslogtreecommitdiffstats
path: root/Tests/ConfigSources/custom1.cpp.in
blob: e5f21c783c2f639af777ba7d7ffc53e804eb8ef6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifdef CUSTOM_CFG_DEBUG
int custom1_debug()
{
  return 0;
}
#endif

#ifdef CUSTOM_CFG_OTHER
int custom1_other()
{
  return 0;
}
#endif