Sign in
cmake
/
cmake
/
76f08a107b344daff524974868ab30353bd9b255
/
.
/
Tests
/
SubDirSpaces
/
Another Subdir
/
testfromsubdir.c
blob: 34b6e7a88d5e3e3b9d711098c03bff5b18b38934 [
file
] [
log
] [
blame
]
#include
<stdio.h>
void
secondone
();
void
pair_stuff
();
void
vcl_stuff
();
int
main
()
{
printf
(
"Hello from subdirectory\n"
);
secondone
();
pair_stuff
();
vcl_stuff
();
return
0
;
}