summaryrefslogtreecommitdiffstats
path: root/Tests/Dependency/Case2/foo3b.c
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2009-09-01 14:38:03 (GMT)
committerBrad King <brad.king@kitware.com>2009-09-01 14:38:03 (GMT)
commit0cfd8c411ff450465ad2adfca43aaeb859eee643 (patch)
tree6e0900fed8ad30d8f31967625cfa7e77bc4da399 /Tests/Dependency/Case2/foo3b.c
parent69251f75492a9bd1e3122e8e7ae7888e9c700a57 (diff)
downloadCMake-0cfd8c411ff450465ad2adfca43aaeb859eee643.zip
CMake-0cfd8c411ff450465ad2adfca43aaeb859eee643.tar.gz
CMake-0cfd8c411ff450465ad2adfca43aaeb859eee643.tar.bz2
Test link multiplicity
This tests the LINK_INTERFACE_MULTIPLICITY property for a cycle of three static libraries that must be scanned three times to link properly.
Diffstat (limited to 'Tests/Dependency/Case2/foo3b.c')
-rw-r--r--Tests/Dependency/Case2/foo3b.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/Tests/Dependency/Case2/foo3b.c b/Tests/Dependency/Case2/foo3b.c
index 90ea2f1..ca25fd8 100644
--- a/Tests/Dependency/Case2/foo3b.c
+++ b/Tests/Dependency/Case2/foo3b.c
@@ -1 +1,2 @@
-int foo3b(void) { return 0; }
+extern int foo1c(void);
+int foo3b(void) { return foo1c(); }