diff options
Diffstat (limited to 'Tests/Simple/simple.cxx')
-rw-r--r-- | Tests/Simple/simple.cxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Tests/Simple/simple.cxx b/Tests/Simple/simple.cxx index ef26e79..7bee7c0 100644 --- a/Tests/Simple/simple.cxx +++ b/Tests/Simple/simple.cxx @@ -1,6 +1,11 @@ extern void simpleLib(); +extern "C" int FooBar(); +extern int bar(); +extern int bar1(); int main () { + FooBar(); + bar(); simpleLib(); return 0; } |