1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/media/webrtc/trunk/tools/gyp/test/same-source-file-name/src/prog2.c Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,16 @@ 1.4 +#include <stdio.h> 1.5 + 1.6 +extern void func(void); 1.7 + 1.8 +int main(int argc, char *argv[]) 1.9 +{ 1.10 + printf("Hello from prog2.c\n"); 1.11 + func(); 1.12 + /* 1.13 + * Uncomment to test same-named files in different directories, 1.14 + * which Visual Studio doesn't support. 1.15 + subdir1_func(); 1.16 + subdir2_func(); 1.17 + */ 1.18 + return 0; 1.19 +}