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
/
LinkLineOrder
/
NoDepC.c
blob: f05d962b74b7794a7a283f85e179592d9a9464aa (
plain
)
1
2
3
4
5
6
7
/* depends on NoDepA */
void
NoDepA_func
();
void
NoDepC_func
()
{
NoDepA_func
();
}