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.sbin/ndp | |
parent | 28d59da957500734c9a5139d0d9bd7eea82eb36d (diff) |
no need to extern int errno if errno.h is included
Diffstat (limited to 'usr.sbin/ndp')
-rw-r--r-- | usr.sbin/ndp/ndp.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.sbin/ndp/ndp.c b/usr.sbin/ndp/ndp.c index 657358cea72..b4235555418 100644 --- a/usr.sbin/ndp/ndp.c +++ b/usr.sbin/ndp/ndp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ndp.c,v 1.2 1999/12/10 07:26:56 itojun Exp $ */ +/* $OpenBSD: ndp.c,v 1.3 2000/02/01 03:24:05 deraadt Exp $ */ /* * Copyright (C) 1995, 1996, 1997, 1998, and 1999 WIDE Project. @@ -124,7 +124,6 @@ ((a) > 0 ? (1 + (((a) - 1) | (sizeof(long) - 1))) : sizeof(long)) #define ADVANCE(x, n) (x += ROUNDUP((n)->sa_len)) -extern int errno; static int pid; static int fflag; static int nflag; |