Sign in
cmake
/
cmake
/
39e5a4da220c1ddcd73d74d26ed55a7418add215
/
.
/
Tests
/
SubDir
/
AnotherSubdir
/
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
;
}