diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2000-02-01 03:24:15 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2000-02-01 03:24:15 +0000 |
commit | 376a7976c0a22002c6750673c39178e703bed58b (patch) | |
tree | 3b4a8322b9b5e1e7e175d003e4ecf149fba0ce24 /usr.bin/tftp/tftp.c | |
parent | 28d59da957500734c9a5139d0d9bd7eea82eb36d (diff) |
no need to extern int errno if errno.h is included
Diffstat (limited to 'usr.bin/tftp/tftp.c')
-rw-r--r-- | usr.bin/tftp/tftp.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/usr.bin/tftp/tftp.c b/usr.bin/tftp/tftp.c index eeb57d71938..03de5d72732 100644 --- a/usr.bin/tftp/tftp.c +++ b/usr.bin/tftp/tftp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tftp.c,v 1.4 1997/08/06 06:43:45 deraadt Exp $ */ +/* $OpenBSD: tftp.c,v 1.5 2000/02/01 03:23:42 deraadt Exp $ */ /* $NetBSD: tftp.c,v 1.5 1995/04/29 05:55:25 cgd Exp $ */ /* @@ -38,7 +38,7 @@ #if 0 static char sccsid[] = "@(#)tftp.c 8.1 (Berkeley) 6/6/93"; #endif -static char rcsid[] = "$OpenBSD: tftp.c,v 1.4 1997/08/06 06:43:45 deraadt Exp $"; +static char rcsid[] = "$OpenBSD: tftp.c,v 1.5 2000/02/01 03:23:42 deraadt Exp $"; #endif /* not lint */ /* Many bug fixes are from Jim Guyton <guyton@rand-unix> */ @@ -64,7 +64,6 @@ static char rcsid[] = "$OpenBSD: tftp.c,v 1.4 1997/08/06 06:43:45 deraadt Exp $" #include "extern.h" #include "tftpsubs.h" -extern int errno; extern struct sockaddr_in peeraddr; /* filled in by main */ extern int f; /* the opened socket */ |