summaryrefslogtreecommitdiff
path: root/usr.sbin/arp
diff options
context:
space:
mode:
authorkn <kn@cvs.openbsd.org>2019-09-16 20:49:29 +0000
committerkn <kn@cvs.openbsd.org>2019-09-16 20:49:29 +0000
commit677c7e3573f80df66bf26905b5d3461edec068ce (patch)
tree825138a655f1c23ce83f4939ca11ad092dab5a0b /usr.sbin/arp
parent7d1f85fb6e0298b29b159b3bd6cf65e7c5cc4f81 (diff)
Zap unused h_errno
Revision 1.84 removed the last user; no object change.
Diffstat (limited to 'usr.sbin/arp')
-rw-r--r--usr.sbin/arp/arp.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/usr.sbin/arp/arp.c b/usr.sbin/arp/arp.c
index aa8516698d0..b09eedd7ec9 100644
--- a/usr.sbin/arp/arp.c
+++ b/usr.sbin/arp/arp.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: arp.c,v 1.87 2019/09/16 19:39:47 kn Exp $ */
+/* $OpenBSD: arp.c,v 1.88 2019/09/16 20:49:28 kn Exp $ */
/* $NetBSD: arp.c,v 1.12 1995/04/24 13:25:18 cgd Exp $ */
/*
@@ -88,8 +88,6 @@ static int aflag; /* do it for all entries */
static int rtsock = -1;
static int rdomain;
-extern int h_errno;
-
/* ROUNDUP() is nasty, but it is identical to what's in the kernel. */
#define ROUNDUP(a) \
((a) > 0 ? (1 + (((a) - 1) | (sizeof(long) - 1))) : sizeof(long))