summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorespie <espie@openbsd.org>2007-09-18 08:24:56 +0000
committerespie <espie@openbsd.org>2007-09-18 08:24:56 +0000
commitfae4658654bfe5b4555cc853737b0af4b5604e1d (patch)
tree934b29d715eb90de4cbecce17ca811a49b7423fc
parentSince the MALLOC/FREE macros don't work with M_ZERO (on purpose) and (diff)
downloadwireguard-openbsd-fae4658654bfe5b4555cc853737b0af4b5604e1d.tar.xz
wireguard-openbsd-fae4658654bfe5b4555cc853737b0af4b5604e1d.zip
missing prototype for static function
-rw-r--r--usr.bin/make/parse.c3
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