summaryrefslogtreecommitdiff
path: root/usr.sbin/mopd/otherOS
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2005-12-21 01:40:26 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2005-12-21 01:40:26 +0000
commit1534bb5e4074929a07f1fcc1195962967d5508ce (patch)
tree81d07eb491e2cc01134d574bdb6da9a6ffa56bf8 /usr.sbin/mopd/otherOS
parent0e4fd55dc208bc4388e93e9803a984f9f4e11d12 (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.c4
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"