diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2005-12-21 01:40:26 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2005-12-21 01:40:26 +0000 |
commit | 1534bb5e4074929a07f1fcc1195962967d5508ce (patch) | |
tree | 81d07eb491e2cc01134d574bdb6da9a6ffa56bf8 /usr.sbin/mopd/otherOS | |
parent | 0e4fd55dc208bc4388e93e9803a984f9f4e11d12 (diff) |
Userland programs should include <errno.h> not <sys/errno.h>
OK deraadt@
Diffstat (limited to 'usr.sbin/mopd/otherOS')
-rw-r--r-- | usr.sbin/mopd/otherOS/loop-linux2.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/mopd/otherOS/loop-linux2.c b/usr.sbin/mopd/otherOS/loop-linux2.c index f25c4d59c7a..c7128f380f2 100644 --- a/usr.sbin/mopd/otherOS/loop-linux2.c +++ b/usr.sbin/mopd/otherOS/loop-linux2.c @@ -23,9 +23,10 @@ */ #ifndef LINT -static const char rcsid[] = "$Id: loop-linux2.c,v 1.4 2003/12/01 00:56:51 avsm Exp $"; +static const char rcsid[] = "$Id: loop-linux2.c,v 1.5 2005/12/21 01:40:24 millert Exp $"; #endif +#include <errno.h> #include <stdlib.h> #include <strings.h> #include <unistd.h> @@ -33,7 +34,6 @@ static const char rcsid[] = "$Id: loop-linux2.c,v 1.4 2003/12/01 00:56:51 avsm E #include <sys/time.h> #endif #include <sys/ioctl.h> -#include <sys/errno.h> #include "os.h" #include "common/common.h" |