index
:
CMake.git
master
release
CMake is a cross-platform, open-source build system generator.
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Tests
/
Visibility
/
shared.cpp
blob: 4897ff819c2e61f16f9f4fc2b45bd1993f9cca68 (
plain
)
1
2
3
4
5
6
7
8
extern
"C"
int
bar
(
void
);
void
baz
();
int
shared
()
{
baz
();
return
bar
();
}