summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2000-02-01 03:24:15 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2000-02-01 03:24:15 +0000
commit376a7976c0a22002c6750673c39178e703bed58b (patch)
tree3b4a8322b9b5e1e7e175d003e4ecf149fba0ce24 /lib
parent28d59da957500734c9a5139d0d9bd7eea82eb36d (diff)
no need to extern int errno if errno.h is included
Diffstat (limited to 'lib')
-rw-r--r--lib/libwrap/hosts_access.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/libwrap/hosts_access.c b/lib/libwrap/hosts_access.c
index cde5c7feb9f..a63a8deb90d 100644
--- a/lib/libwrap/hosts_access.c
+++ b/lib/libwrap/hosts_access.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: hosts_access.c,v 1.4 1999/06/06 15:34:44 deraadt Exp $ */
+/* $OpenBSD: hosts_access.c,v 1.5 2000/02/01 03:23:17 deraadt Exp $ */
/*
* This module implements a simple access control language that is based on
@@ -23,7 +23,7 @@
#if 0
static char sccsid[] = "@(#) hosts_access.c 1.21 97/02/12 02:13:22";
#else
-static char rcsid[] = "$OpenBSD: hosts_access.c,v 1.4 1999/06/06 15:34:44 deraadt Exp $";
+static char rcsid[] = "$OpenBSD: hosts_access.c,v 1.5 2000/02/01 03:23:17 deraadt Exp $";
#endif
#endif
@@ -43,7 +43,6 @@ static char rcsid[] = "$OpenBSD: hosts_access.c,v 1.4 1999/06/06 15:34:44 deraad
#include <netgroup.h>
#endif
-extern int errno;
#ifndef INADDR_NONE
#define INADDR_NONE (-1) /* XXX should be 0xffffffff */