blob: 727f6822058eaff3cebb005bf1faab89466650fb [file] [log] [blame]
#include <stdio.h>
#include "inc.h"
#include "include1.h"
#include "include2.h"
int main(int argc, char *argv[])
{
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;
}