summaryrefslogtreecommitdiff
path: root/tools/build/src/engine/headers.h
blob: 1c0a642df8d24e1ffbd5ba59a9955814deb24610 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*
 * Copyright 1993, 1995 Christopher Seiwald.
 *
 * This file is part of Jam - see jam.c for Copyright information.
 */

/*
 * headers.h - handle #includes in source files
 */

#ifndef HEADERS_SW20111118_H
#define HEADERS_SW20111118_H

#include "object.h"
#include "rules.h"
#include "regexp.h"

void headers( TARGET * t );

#ifdef OPT_HEADER_CACHE_EXT
struct regexp;
LIST * headers1( LIST *l, OBJECT * file, int rec, struct regexp *re[] );
#endif

#endif