summaryrefslogtreecommitdiff
path: root/deps/gyp/test/same-source-file-name/src/prog1.c
blob: 604e2b9c98f4d13e95c87d20909d1d1a501abf27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <stdio.h>

extern void func(void);

int main(void)
{
  printf("Hello from prog1.c\n");
  func();
  /*
   * Uncomment to test same-named files in different directories,
   * which Visual Studio doesn't support.
  subdir1_func();
  subdir2_func();
   */
  return 0;
}