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
/
Dependency
/
Case1
/
main.c
blob: 07191cc3a0438d1677c223af3bec46033c7ad209 (
plain
)
1
2
3
4
5
6
7
8
9
10
extern
int
b
();
extern
int
c
();
extern
int
d
();
int
main
()
{
c
();
b
();
d
();
}