summaryrefslogtreecommitdiff
path: root/tools/build/src/engine/hdrmacro.h
blob: 7595ede26ac8104ada615e8b65a14576e6aa45c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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