2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-15 13:02:11 +00:00
Files
build/v2/engine/hdrmacro.h
Steven Watanabe 87c62c82d1 Merge Boost.Build from the trunk.
[SVN r84398]
2013-05-21 04:14:18 +00:00

22 lines
445 B
C

/*
* 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