Imported Upstream version 1.57.0
[platform/upstream/boost.git] / tools / build / src / engine / headers.h
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 "object.h"
15 #include "rules.h"
16 #include "regexp.h"
17
18 void headers( TARGET * t );
19
20 #ifdef OPT_HEADER_CACHE_EXT
21 struct regexp;
22 LIST * headers1( LIST *l, OBJECT * file, int rec, struct regexp *re[] );
23 #endif
24
25 #endif