CMake/Tests/SubDir/AnotherSubdir/testfromsubdir.c

15 lines
188 B
C
Raw Normal View History

2004-04-27 02:49:31 +04:00
#include <stdio.h>
void secondone();
void pair_stuff();
void vcl_stuff();
2004-04-27 02:49:31 +04:00
int main()
{
printf("Hello from subdirectory\n");
secondone();
pair_stuff();
vcl_stuff();
2004-04-27 02:49:31 +04:00
return 0;
}