summaryrefslogtreecommitdiff
path: root/deps/gyp/test/generator-output/src/subdir2/prog2.c
blob: d80d8719843767ac5caa2c855616f83fba7e6d53 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include <stdio.h>

#include "inc.h"
#include "include1.h"
#include "include2.h"
#include "include3.h"
#include "deeper.h"

int main(void)
{
  printf("Hello from prog2.c\n");
  printf("Hello from %s\n", INC_STRING);
  printf("Hello from %s\n", INCLUDE1_STRING);
  printf("Hello from %s\n", INCLUDE2_STRING);
  printf("Hello from %s\n", INCLUDE3_STRING);
  printf("Hello from %s\n", DEEPER_STRING);
  return 0;
}