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