diff options
Diffstat (limited to 'Tests/VSNASM/main.c')
-rw-r--r-- | Tests/VSNASM/main.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Tests/VSNASM/main.c b/Tests/VSNASM/main.c index 18ddb78..b1401b6 100644 --- a/Tests/VSNASM/main.c +++ b/Tests/VSNASM/main.c @@ -1,5 +1,6 @@ extern int foo(void); +extern int bar(void); int main(void) { - return foo(); + return foo() + bar(); } |