diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2003-03-17 19:29:22 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2003-03-17 19:29:22 (GMT) |
commit | 72be68d0e0b5aefe462ef23082263db63bde4220 (patch) | |
tree | df674d70f174c42dcf21cb7134f0aa8881770cbe /Tests/Simple/simple.cxx | |
parent | e92c98f4b014cec2ecd355d04dd34e88200c4676 (diff) | |
download | CMake-72be68d0e0b5aefe462ef23082263db63bde4220.zip CMake-72be68d0e0b5aefe462ef23082263db63bde4220.tar.gz CMake-72be68d0e0b5aefe462ef23082263db63bde4220.tar.bz2 |
Improve test
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; } |