[Tizen_6_build] Fixed 32-bit arm build with gcc 9
[platform/upstream/boost-jam.git] / hcache.h
1 /*
2  * This file is not part of Jam
3  */
4
5 /*
6  * hcache.h - handle #includes in source files
7  */
8 #ifndef HCACHE_H
9 # define HCACHE_H
10
11 # include "regexp.h"
12 # include "lists.h"
13
14 void hcache_init(void);
15 void hcache_done(void);
16 LIST *hcache(TARGET *t, int rec, regexp *re[], LIST *hdrscan);
17
18 #endif