summaryrefslogtreecommitdiff
path: root/05/tcc-0.9.27/tests/tests2/18_include.c
blob: dbae3aa2ee94b9b84abb9346fa95bac12ece5d0d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <stdio.h>

int main()
{
   printf("including\n");
#include "18_include.h"
   printf("done\n");

   return 0;
}

/* vim: set expandtab ts=4 sw=3 sts=3 tw=80 :*/