| OLD | NEW |
| 1 #include <stdio.h> | 1 #include <stdio.h> |
| 2 | 2 |
| 3 #include "inc.h" | 3 #include "inc.h" |
| 4 #include "include1.h" | 4 #include "include1.h" |
| 5 #include "include2.h" | 5 #include "include2.h" |
| 6 | 6 |
| 7 int main(int argc, char *argv[]) | 7 int main(void) |
| 8 { | 8 { |
| 9 printf("Hello from subdir/subdir_includes.c\n"); | 9 printf("Hello from subdir/subdir_includes.c\n"); |
| 10 printf("Hello from %s\n", INC_STRING); | 10 printf("Hello from %s\n", INC_STRING); |
| 11 printf("Hello from %s\n", INCLUDE1_STRING); | 11 printf("Hello from %s\n", INCLUDE1_STRING); |
| 12 printf("Hello from %s\n", INCLUDE2_STRING); | 12 printf("Hello from %s\n", INCLUDE2_STRING); |
| 13 return 0; | 13 return 0; |
| 14 } | 14 } |
| OLD | NEW |