diff options
Diffstat (limited to 'Tests/ConfigSources/custom5.cpp.in')
-rw-r--r-- | Tests/ConfigSources/custom5.cpp.in | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Tests/ConfigSources/custom5.cpp.in b/Tests/ConfigSources/custom5.cpp.in new file mode 100644 index 0000000..51f40ae --- /dev/null +++ b/Tests/ConfigSources/custom5.cpp.in @@ -0,0 +1,13 @@ +#ifdef CUSTOM_CFG_DEBUG +int custom5_debug() +{ + return 0; +} +#endif + +#ifdef CUSTOM_CFG_OTHER +int custom5_other() +{ + return 0; +} +#endif |