blob: 4623543c430bc5133e0f8f02ac5706b22887e394 [file] [log] [blame]
Ben Murdoch097c5b22016-05-18 11:27:45 +01001#include <stdio.h>
2
3#include "inc.h"
4#include "include1.h"
5#include "include2.h"
6
7int main(void)
8{
9 printf("Hello from subdir/subdir_includes.c\n");
10 printf("Hello from %s\n", INC_STRING);
11 printf("Hello from %s\n", INCLUDE1_STRING);
12 printf("Hello from %s\n", INCLUDE2_STRING);
13 return 0;
14}