diff options
Diffstat (limited to 'Tests/InterfaceLibrary/definetestexe.cpp')
-rw-r--r-- | Tests/InterfaceLibrary/definetestexe.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Tests/InterfaceLibrary/definetestexe.cpp b/Tests/InterfaceLibrary/definetestexe.cpp index a6b5592..098502c 100644 --- a/Tests/InterfaceLibrary/definetestexe.cpp +++ b/Tests/InterfaceLibrary/definetestexe.cpp @@ -17,8 +17,9 @@ extern int obj(); extern int sub(); +extern int item(); int main(int, char**) { - return obj() + sub(); + return obj() + sub() + item(); } |