Home | History | Annotate | Download | only in subdir
      1 #include <stdio.h>
      2 
      3 #include "inc.h"
      4 #include "include1.h"
      5 #include "include2.h"
      6 
      7 int 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 }
     15