summaryrefslogtreecommitdiff
path: root/tools/build/src/engine/hdrmacro.h
diff options
context:
space:
mode:
Diffstat (limited to 'tools/build/src/engine/hdrmacro.h')
-rw-r--r--tools/build/src/engine/hdrmacro.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/tools/build/src/engine/hdrmacro.h b/tools/build/src/engine/hdrmacro.h
new file mode 100644
index 000000000..7595ede26
--- /dev/null
+++ b/tools/build/src/engine/hdrmacro.h
@@ -0,0 +1,21 @@
+/*
+ * Copyright 1993, 1995 Christopher Seiwald.
+ *
+ * This file is part of Jam - see jam.c for Copyright information.
+ */
+
+/*
+ * hdrmacro.h - parses header files for #define MACRO <filename> or
+ * #define MACRO "filename" definitions
+ */
+
+#ifndef HDRMACRO_SW20111118_H
+#define HDRMACRO_SW20111118_H
+
+#include "object.h"
+#include "rules.h"
+
+void macro_headers( TARGET * );
+OBJECT * macro_header_get( OBJECT * macro_name );
+
+#endif