modernc.org/ccgo/v3@v3.16.14/lib/testdata/tcc-0.9.27/tests/tests2/18_include.c (about)

     1  #include <stdio.h>
     2  
     3  int main()
     4  {
     5     printf("including\n");
     6  #include "18_include.h"
     7     printf("done\n");
     8  
     9     return 0;
    10  }
    11  
    12  /* vim: set expandtab ts=4 sw=3 sts=3 tw=80 :*/