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
BUG: Fix find_* search order with path suffixes
[cmake.git]
/
Tests
/
Dependency
/
Exec2
/
ExecMain.c
blob
d08a796c34133d638dd2f57739452d4d481fa3d4
1
#include <stdio.h>
2
3
void
FiveFunction
();
4
void
EightFunction
();
5
6
int
main
( )
7
{
8
FiveFunction
();
9
EightFunction
();
10
11
printf
(
"Dependency test executable ran successfully.
\n
"
);
12
13
return
0
;
14
}