summaryrefslogtreecommitdiff
path: root/sbin/dhclient
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2013-11-12 04:59:03 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2013-11-12 04:59:03 +0000
commit9e1b2ae8848d9962327a4ef2e82b6a42109d7d3b (patch)
treecfbcaccd4d5ade36331a699b8b5a8bf2171168f3 /sbin/dhclient
parent66902d59f0fe1ecf1b6515121102bcad58fe8132 (diff)
add a variety of missing prototypes
Diffstat (limited to 'sbin/dhclient')
-rw-r--r--sbin/dhclient/conflex.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/sbin/dhclient/conflex.c b/sbin/dhclient/conflex.c
index 1cec42ee87e..3d9ee1353f3 100644
--- a/sbin/dhclient/conflex.c
+++ b/sbin/dhclient/conflex.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: conflex.c,v 1.23 2013/10/22 18:15:58 krw Exp $ */
+/* $OpenBSD: conflex.c,v 1.24 2013/11/12 04:59:00 deraadt Exp $ */
/* Lexical scanner for dhclient config file. */
@@ -355,6 +355,8 @@ static const struct keywords {
{ "token-ring", TOK_TOKEN_RING }
};
+int kw_cmp(const void *k, const void *e);
+
int
kw_cmp(const void *k, const void *e)
{