summaryrefslogtreecommitdiffstats
path: root/Tests/ConfigSources/main_other.cpp
blob: 3184a19d2e0c01f6841fecde655ed7385fd72efa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef CFG_OTHER
#  error "This source should only be compiled in a non-Debug configuration."
#endif
#ifdef CFG_DEBUG
#  error "This source should not be compiled in a Debug configuration."
#endif

#include "iface.h"

int main(int argc, char** argv)
{
  return iface_src() + iface_other();
}