summaryrefslogtreecommitdiff
path: root/deps/gyp/test/multiple-targets/src/prog1.c
blob: fbf8d4cd7cce1421d4e79c62abdcded61fa5e990 (plain)
1
2
3
4
5
6
7
8
9
10
#include <stdio.h>

extern void common(void);

int main(void)
{
  printf("hello from prog1.c\n");
  common();
  return 0;
}