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  * hdrmacro.h - parses header files for #define MACRO  <filename> or
9  *              #define MACRO  "filename" definitions
10  */
11 
12 #ifndef HDRMACRO_SW20111118_H
13 #define HDRMACRO_SW20111118_H
14 
15 #include "config.h"
16 #include "object.h"
17 #include "rules.h"
18 
19 void macro_headers( TARGET * );
20 OBJECT * macro_header_get( OBJECT * macro_name );
21 
22 #endif
23