diff options
author | 2004-05-31 10:36:35 +0000 | |
---|---|---|
committer | 2004-05-31 10:36:35 +0000 | |
commit | ca002c591d93c4eaef59e1fa4636e78a2383084e (patch) | |
tree | 257cd134a2c6fa40e975068990d9b2605f5f615f /lib/libwrap/percent_m.c | |
parent | Replace tulip_crc32 with ether_crc32_le. (diff) | |
download | wireguard-openbsd-ca002c591d93c4eaef59e1fa4636e78a2383084e.tar.xz wireguard-openbsd-ca002c591d93c4eaef59e1fa4636e78a2383084e.zip |
Remove redundant errno declaration. ok deraadt@
Diffstat (limited to 'lib/libwrap/percent_m.c')
-rw-r--r-- | lib/libwrap/percent_m.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/libwrap/percent_m.c b/lib/libwrap/percent_m.c index 82b0b84ebb8..5c941d61744 100644 --- a/lib/libwrap/percent_m.c +++ b/lib/libwrap/percent_m.c @@ -1,4 +1,4 @@ -/* $OpenBSD: percent_m.c,v 1.2 2001/11/07 18:48:48 deraadt Exp $ */ +/* $OpenBSD: percent_m.c,v 1.3 2004/05/31 10:39:08 otto Exp $ */ /* * Replace %m by system error message. @@ -10,7 +10,7 @@ #if 0 static char sccsid[] = "@(#) percent_m.c 1.1 94/12/28 17:42:37"; #else -static char rcsid[] = "$OpenBSD: percent_m.c,v 1.2 2001/11/07 18:48:48 deraadt Exp $"; +static char rcsid[] = "$OpenBSD: percent_m.c,v 1.3 2004/05/31 10:39:08 otto Exp $"; #endif #endif @@ -19,7 +19,6 @@ static char rcsid[] = "$OpenBSD: percent_m.c,v 1.2 2001/11/07 18:48:48 deraadt E #include <errno.h> #include <string.h> -extern int errno; #ifndef SYS_ERRLIST_DEFINED extern char *sys_errlist[]; extern int sys_nerr; |