diff options
author | 2005-12-21 01:40:22 +0000 | |
---|---|---|
committer | 2005-12-21 01:40:22 +0000 | |
commit | ae5feee3506f1aa5259009ab0dd200f8b10a80e8 (patch) | |
tree | 971a43b49d285f8c2fb3bf3dfddffcf524907723 /usr.sbin/mopd/common/loop-bsd.c | |
parent | make alloc_stack take an optional base, preparation for stack attributes (diff) | |
download | wireguard-openbsd-ae5feee3506f1aa5259009ab0dd200f8b10a80e8.tar.xz wireguard-openbsd-ae5feee3506f1aa5259009ab0dd200f8b10a80e8.zip |
Userland programs should include <errno.h> not <sys/errno.h>
OK deraadt@
Diffstat (limited to 'usr.sbin/mopd/common/loop-bsd.c')
-rw-r--r-- | usr.sbin/mopd/common/loop-bsd.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/mopd/common/loop-bsd.c b/usr.sbin/mopd/common/loop-bsd.c index 51569ebfd70..ce9a20f5438 100644 --- a/usr.sbin/mopd/common/loop-bsd.c +++ b/usr.sbin/mopd/common/loop-bsd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: loop-bsd.c,v 1.9 2004/04/14 20:37:28 henning Exp $ */ +/* $OpenBSD: loop-bsd.c,v 1.10 2005/12/21 01:40:24 millert Exp $ */ /* * Copyright (c) 1993-95 Mats O Jansson. All rights reserved. @@ -26,9 +26,10 @@ #ifndef LINT static const char rcsid[] = - "$OpenBSD: loop-bsd.c,v 1.9 2004/04/14 20:37:28 henning Exp $"; + "$OpenBSD: loop-bsd.c,v 1.10 2005/12/21 01:40:24 millert Exp $"; #endif +#include <errno.h> #include <stdlib.h> #include <string.h> #include <unistd.h> @@ -37,7 +38,6 @@ static const char rcsid[] = #endif #include <net/bpf.h> #include <sys/ioctl.h> -#include <sys/errno.h> #include "os.h" #include "common/common.h" |