2011-11-18 22:14:09 +04:00
|
|
|
/*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
2012-10-22 13:20:12 +04:00
|
|
|
#ifndef HDRMACRO_SW20111118_H
|
|
|
|
#define HDRMACRO_SW20111118_H
|
|
|
|
|
2013-10-04 19:08:14 +04:00
|
|
|
#include "object.h"
|
|
|
|
#include "rules.h"
|
2011-11-18 22:14:09 +04:00
|
|
|
|
2013-10-04 19:08:14 +04:00
|
|
|
void macro_headers( TARGET * );
|
|
|
|
OBJECT * macro_header_get( OBJECT * macro_name );
|
2012-10-22 13:20:12 +04:00
|
|
|
|
|
|
|
#endif
|