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