Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'jam-files/engine/hcache.h')
-rw-r--r--jam-files/engine/hcache.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/jam-files/engine/hcache.h b/jam-files/engine/hcache.h
index 2aa239493..a9d929d51 100644
--- a/jam-files/engine/hcache.h
+++ b/jam-files/engine/hcache.h
@@ -6,13 +6,14 @@
* hcache.h - handle #includes in source files
*/
#ifndef HCACHE_H
-# define HCACHE_H
+#define HCACHE_H
-# include "regexp.h"
-# include "lists.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 );
+LIST * hcache( TARGET * t, int rec, regexp * re[], LIST * hdrscan );
#endif