1 /*
2  * Copyright 1993, 1995 Christopher Seiwald.
3  *
4  * This file is part of Jam - see jam.c for Copyright information.
5  */
6 
7 /*
8  * headers.h - handle #includes in source files
9  */
10 
11 #ifndef HEADERS_SW20111118_H
12 #define HEADERS_SW20111118_H
13 
14 #include "config.h"
15 #include "object.h"
16 #include "rules.h"
17 #include "regexp.h"
18 
19 void headers( TARGET * t );
20 
21 #ifdef OPT_HEADER_CACHE_EXT
22 struct regexp;
23 LIST * headers1( LIST *l, OBJECT * file, int rec, struct regexp *re[] );
24 #endif
25 
26 #endif
27