diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2007-09-17 11:11:31 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2007-09-17 11:11:31 +0000 |
commit | 7a254c2e1496eb7c30bed83d16355d8c197f80ae (patch) | |
tree | 83b809beb0e54915f2a2ca77c8168f3af0def7b7 /usr.bin/make/parse.h | |
parent | 3687ddd7d5ccc726f2736aed9ed84a2464cc8a2f (diff) |
parseIncPath -> userIncludePath and assorted renames
Diffstat (limited to 'usr.bin/make/parse.h')
-rw-r--r-- | usr.bin/make/parse.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/make/parse.h b/usr.bin/make/parse.h index 3106fd390c4..eb2d73e8bc0 100644 --- a/usr.bin/make/parse.h +++ b/usr.bin/make/parse.h @@ -1,7 +1,7 @@ #ifndef PARSE_H #define PARSE_H /* $OpenPackages$ */ -/* $OpenBSD: parse.h,v 1.2 2004/04/07 13:11:36 espie Exp $ */ +/* $OpenBSD: parse.h,v 1.3 2007/09/17 11:11:30 espie Exp $ */ /* * Copyright (c) 2001 Marc Espie. * @@ -38,8 +38,8 @@ extern void Parse_End(void); #define Parse_End() #endif -extern Lst sysIncPath; /* The system include<> path. */ -extern Lst parseIncPath; /* The user include"" path. */ +extern Lst systemIncludePath; +extern Lst userIncludePath; /* Parse_File(filename, filehandle); * Parses stream filehandle, use filename when reporting error |