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
/
SubDir
/
ThirdSubDir
/
testfromauxsubdir.c
blob
d1620845f127b6cd4adbc74e15a30854a8b7fc25
1
#include <stdio.h>
2
3
void
secondone
();
4
void
pair_stuff
();
5
void
pair_p_stuff
();
6
void
vcl_stuff
();
7
8
int
main
()
9
{
10
printf
(
"Hello from subdirectory
\n
"
);
11
secondone
();
12
pair_stuff
();
13
pair_p_stuff
();
14
vcl_stuff
();
15
return
0
;
16
}