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

extern void common(void);

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