blob: 4623543c430bc5133e0f8f02ac5706b22887e394 [file] [log] [blame]
#include <stdio.h>
#include "inc.h"
#include "include1.h"
#include "include2.h"
int main(void)
{
printf("Hello from subdir/subdir_includes.c\n");
printf("Hello from %s\n", INC_STRING);
printf("Hello from %s\n", INCLUDE1_STRING);
printf("Hello from %s\n", INCLUDE2_STRING);
return 0;
}