Initial commit.
[CMakeLuaTailorHgBridge.git] / CMakeLua / Tests / SubDir / AnotherSubdir / testfromsubdir.c
blob34b6e7a88d5e3e3b9d711098c03bff5b18b38934
1 #include <stdio.h>
3 void secondone();
4 void pair_stuff();
5 void vcl_stuff();
7 int main()
9 printf("Hello from subdirectory\n");
10 secondone();
11 pair_stuff();
12 vcl_stuff();
13 return 0;