repo.or.cz
/
cmake.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
KWSys Nightly Date Stamp
[cmake.git]
/
Tests
/
Dependency
/
Three
/
ThreeSrc.c
blob
9c77f17a0e572b8078762804969d9c0a7c83e49e
1
void
OneFunction
();
2
void
FourFunction
();
3
4
void
ThreeFunction
()
5
{
6
static int
count
=
0
;
7
if
(
count
==
0
) {
8
++
count
;
9
FourFunction
();
10
}
11
OneFunction
();
12
}