tests: Add tests for compile/run tcc.c with `tcc -b` then compile tcc.c again, then...
[tinycc.git] / tests2 / 18_include.c
blobdbae3aa2ee94b9b84abb9346fa95bac12ece5d0d
1 #include <stdio.h>
3 int main()
5 printf("including\n");
6 #include "18_include.h"
7 printf("done\n");
9 return 0;
12 /* vim: set expandtab ts=4 sw=3 sts=3 tw=80 :*/