diff options
Diffstat (limited to 'Tests/SubDir/AnotherSubdir/testfromsubdir.c')
-rw-r--r-- | Tests/SubDir/AnotherSubdir/testfromsubdir.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Tests/SubDir/AnotherSubdir/testfromsubdir.c b/Tests/SubDir/AnotherSubdir/testfromsubdir.c new file mode 100644 index 0000000..b784b16 --- /dev/null +++ b/Tests/SubDir/AnotherSubdir/testfromsubdir.c @@ -0,0 +1,10 @@ +#include <stdio.h> + +const char* secondone(); + +int main() +{ + printf("Hello from subdirectory\n"); + printf("SO: %s\n", secondone()); + return 0; +} |