summaryrefslogtreecommitdiffstats
path: root/Tests/InterfaceLibrary/definetestexe.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/InterfaceLibrary/definetestexe.cpp')
-rw-r--r--Tests/InterfaceLibrary/definetestexe.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/Tests/InterfaceLibrary/definetestexe.cpp b/Tests/InterfaceLibrary/definetestexe.cpp
index e7a10c1..30f2925 100644
--- a/Tests/InterfaceLibrary/definetestexe.cpp
+++ b/Tests/InterfaceLibrary/definetestexe.cpp
@@ -15,7 +15,9 @@
#error Expected IFACE_HEADER_BUILDDIR
#endif
+extern int sub();
+
int main(int,char**)
{
- return 0;
+ return sub();
}