repo.or.cz
/
kiteware-cmake.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
CMake Nightly Date Stamp
[kiteware-cmake.git]
/
Tests
/
SubDirSpaces
/
ThirdSubDir
/
testfromauxsubdir.c
blob
2bff654f2f3ee8bb54894a5893ab7913273dc336
1
#include <stdio.h>
2
3
void
secondone
();
4
void
pair_stuff
();
5
void
pair_p_stuff
();
6
void
vcl_stuff
();
7
#ifdef CMAKE_PAREN
8
void
testOdd
();
9
#endif
10
int
main
(
void
)
11
{
12
printf
(
"Hello from subdirectory
\n
"
);
13
secondone
();
14
#ifdef CMAKE_PAREN
15
testOdd
();
16
#endif
17
pair_stuff
();
18
pair_p_stuff
();
19
vcl_stuff
();
20
return
0
;
21
}