summaryrefslogtreecommitdiff
path: root/deps/gyp/test/rules/src/subdir3/program.c
blob: c38eead50e89fadbf9deb7610f270acc63b54780 (plain)
1
2
3
4
5
6
7
8
9
10
#include <stdio.h>

extern void function3(void);

int main(void)
{
  printf("Hello from program.c\n");
  function3();
  return 0;
}