aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/make/parse.h
diff options
context:
space:
mode:
authorHartmut Brandt <harti@FreeBSD.org>2005-03-30 15:18:58 +0000
committerHartmut Brandt <harti@FreeBSD.org>2005-03-30 15:18:58 +0000
commitba467ce430c7b108c7f83cd8413a134207451c06 (patch)
tree76bd8e21601dfeeab94e4aab0aa1b9ce981e46a9 /usr.bin/make/parse.h
parentf43eb6f83ba19a3567e5d005cc23f08d878b0247 (diff)
Notes
Diffstat (limited to 'usr.bin/make/parse.h')
-rw-r--r--usr.bin/make/parse.h16
1 files changed, 1 insertions, 15 deletions
diff --git a/usr.bin/make/parse.h b/usr.bin/make/parse.h
index 04c4df7c22e7..867835b5cb61 100644
--- a/usr.bin/make/parse.h
+++ b/usr.bin/make/parse.h
@@ -48,26 +48,12 @@
struct GNode;
struct Lst;
-/*
- * Definitions for handling #include specifications
- */
-typedef struct {
- char *str;
- char *ptr;
-} PTR;
-typedef struct IFile {
- char *fname; /* name of previous file */
- int lineno; /* saved line number */
- FILE *F; /* the open stream */
- PTR *p; /* the char pointer */
-} IFile;
-
void Parse_Error(int, const char *, ...);
Boolean Parse_AnyExport(void);
Boolean Parse_IsVar(char *);
void Parse_DoVar(char *, struct GNode *);
void Parse_AddIncludeDir(char *);
-void Parse_File(char *, FILE *);
+void Parse_File(const char *, FILE *);
void Parse_Init(void);
void Parse_FromString(char *, int);
void Parse_MainName(struct Lst *);