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 /sbin/scsi | |
parent | 0e4fd55dc208bc4388e93e9803a984f9f4e11d12 (diff) |
Userland programs should include <errno.h> not <sys/errno.h>
OK deraadt@
Diffstat (limited to 'sbin/scsi')
-rw-r--r-- | sbin/scsi/libscsi.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/scsi/libscsi.c b/sbin/scsi/libscsi.c index 1479f9fe96e..f7963dca7f4 100644 --- a/sbin/scsi/libscsi.c +++ b/sbin/scsi/libscsi.c @@ -1,4 +1,4 @@ -/* $OpenBSD: libscsi.c,v 1.4 2005/10/24 22:56:17 deraadt Exp $ */ +/* $OpenBSD: libscsi.c,v 1.5 2005/12/21 01:40:23 millert Exp $ */ /* Copyright (c) 1994 HD Associates * (contact: dufault@hda.com) @@ -38,7 +38,7 @@ #include <ctype.h> #include <string.h> #include <sys/scsiio.h> -#include <sys/errno.h> +#include <errno.h> #include <stdarg.h> #include <fcntl.h> |