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
ENH: fix bug where sharedforward would not work if there was a space in the path...
[cmake.git]
/
Tests
/
SubProject
/
foo
/
foo.cxx
blob
68fa36376078f8a68b302c5c7bcbd32b2be42ca6
1
int
bar
();
2
#include <stdio.h>
3
4
int
main
(
int
ac
,
char
**
av
)
5
{
6
(
void
)
ac
;
7
(
void
)
av
;
8
int
ret
=
bar
();
9
printf
(
"bar = %d
\n
"
,
ret
);
10
if
(
ret
==
10
)
11
{
12
return
0
;
13
}
14
return
-
1
;
15
}