CMake/Tests/SubDir/AnotherSubdir/testfromsubdir.c

11 lines
147 B
C
Raw Normal View History

2004-04-27 02:49:31 +04:00
#include <stdio.h>
const char* secondone();
int main()
{
printf("Hello from subdirectory\n");
printf("SO: %s\n", secondone());
return 0;
}