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
/
Exec
/
ExecMain.c
blob
d2f551c7a08fae851513603cef07f4fc2be71ff7
1
#include <stdio.h>
2
3
void
NoDepBFunction
();
4
void
NoDepCFunction
();
5
void
SixAFunction
();
6
void
SixBFunction
();
7
8
int
main
( )
9
{
10
SixAFunction
();
11
SixBFunction
();
12
NoDepBFunction
();
13
NoDepCFunction
();
14
15
printf
(
"Dependency test executable ran successfully.
\n
"
);
16
17
return
0
;
18
}