diff options
Diffstat (limited to 'Tests/SubDir/AnotherSubdir/testfromsubdir.c')
-rw-r--r-- | Tests/SubDir/AnotherSubdir/testfromsubdir.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Tests/SubDir/AnotherSubdir/testfromsubdir.c b/Tests/SubDir/AnotherSubdir/testfromsubdir.c new file mode 100644 index 000000000..34b6e7a88 --- /dev/null +++ b/Tests/SubDir/AnotherSubdir/testfromsubdir.c @@ -0,0 +1,14 @@ +#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; +} |