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
/
InterfaceLinkLibrariesDirect
/
order_A.c
blob: 2cd4d6013ae4d63296bf89a84b36791bedc46524 (
plain
)
1
2
3
4
5
extern
void
order_B
(
void
);
void
order_A
(
void
)
{
order_B
();
}