diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2007-09-18 08:24:57 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2007-09-18 08:24:57 +0000 |
commit | f5899b416f402e98be4e126ac5b001497bbe6e26 (patch) | |
tree | 9138e74172fcae558062d4d676929d9195e164f0 /usr.bin/make | |
parent | 46d7e0e92b285e0239d148718140f686d2f96bc1 (diff) |
missing prototype for static function
Diffstat (limited to 'usr.bin/make')
-rw-r--r-- | usr.bin/make/parse.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/make/parse.c b/usr.bin/make/parse.c index ce248699a7b..d987ac3244b 100644 --- a/usr.bin/make/parse.c +++ b/usr.bin/make/parse.c @@ -1,5 +1,5 @@ /* $OpenPackages$ */ -/* $OpenBSD: parse.c,v 1.92 2007/09/17 12:42:09 espie Exp $ */ +/* $OpenBSD: parse.c,v 1.93 2007/09/18 08:24:56 espie Exp $ */ /* $NetBSD: parse.c,v 1.29 1997/03/10 21:20:04 christos Exp $ */ /* @@ -167,6 +167,7 @@ static void parse_commands(struct growableArray *, const char *); static void create_special_nodes(void); static bool found_delimiter(const char *); static int handle_special_targets(Lst); +static void dump_targets(void); #define SPECIAL_EXEC 4 #define SPECIAL_IGNORE 5 |