media/webrtc/trunk/tools/gyp/test/same-source-file-name/src/prog2.c

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

     1 #include <stdio.h>
     3 extern void func(void);
     5 int main(int argc, char *argv[])
     6 {
     7   printf("Hello from prog2.c\n");
     8   func();
     9   /*
    10    * Uncomment to test same-named files in different directories,
    11    * which Visual Studio doesn't support.
    12   subdir1_func();
    13   subdir2_func();
    14    */
    15   return 0;
    16 }

mercurial