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
STYLE: Nightly Version update
[cmake.git]
/
Tests
/
ComplexOneConfig
/
Library
/
testConly.c
blob
2d83f778e0c9874f737658c7d2efcb6ff9be5e13
1
#include
"testConly.h"
2
#include <stdio.h>
3
4
int
CsharedFunction
()
5
{
6
#ifndef TEST_C_FLAGS
7
printf
(
"TEST_C_FLAGS failed
\n
"
);
8
return
0
;
9
#else
10
printf
(
"Passed: TEST_C_FLAGS passed
\n
"
);
11
#endif
12
return
1
;
13
}