diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2013-11-12 04:59:03 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2013-11-12 04:59:03 +0000 |
commit | 9e1b2ae8848d9962327a4ef2e82b6a42109d7d3b (patch) | |
tree | cfbcaccd4d5ade36331a699b8b5a8bf2171168f3 /sbin/dhclient | |
parent | 66902d59f0fe1ecf1b6515121102bcad58fe8132 (diff) |
add a variety of missing prototypes
Diffstat (limited to 'sbin/dhclient')
-rw-r--r-- | sbin/dhclient/conflex.c | 4 |
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) { |