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
Updated formatting of documentation plus a little reorganization.
[cmake.git]
/
Tests
/
Dependency
/
Four
/
FourSrc.c
blob
e8fefcda26165230b66a41ef8088c1a7efe93a3e
1
void
NoDepAFunction
();
2
void
OneFunction
();
3
void
TwoFunction
();
4
5
void
FourFunction
()
6
{
7
static int
count
=
0
;
8
if
(
count
==
0
) {
9
++
count
;
10
TwoFunction
();
11
}
12
OneFunction
();
13
NoDepAFunction
();
14
}