summaryrefslogtreecommitdiff
path: root/tools/build/src/engine/hcache.h
diff options
context:
space:
mode:
Diffstat (limited to 'tools/build/src/engine/hcache.h')
-rw-r--r--tools/build/src/engine/hcache.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/tools/build/src/engine/hcache.h b/tools/build/src/engine/hcache.h
new file mode 100644
index 000000000..a9d929d51
--- /dev/null
+++ b/tools/build/src/engine/hcache.h
@@ -0,0 +1,19 @@
+/*
+ * This file is not part of Jam
+ */
+
+/*
+ * hcache.h - handle #includes in source files
+ */
+#ifndef HCACHE_H
+#define HCACHE_H
+
+#include "lists.h"
+#include "regexp.h"
+#include "rules.h"
+
+void hcache_init( void );
+void hcache_done( void );
+LIST * hcache( TARGET * t, int rec, regexp * re[], LIST * hdrscan );
+
+#endif