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
/
LinkLineOrder
/
NoDepF.c
blob
8311cb868ad1f2d57952ea2e322d4236edccf3a4
1
/* depends on NoDepE */
2
void
NoDepE_func
();
3
4
void
NoDepF_func
()
5
{
6
static int
firstcall
=
1
;
7
if
(
firstcall
) {
8
firstcall
=
0
;
9
NoDepE_func
();
10
}
11
}