Pull in <errno.h> instead of <sys/errno.h> for declaration of errno.

This commit is contained in:
kleink 1999-01-11 22:21:30 +00:00
parent 67e9d2a3bf
commit 657d577aeb
2 changed files with 6 additions and 6 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: msconfig.c,v 1.2 1998/01/05 07:02:52 perry Exp $ */
/* $NetBSD: msconfig.c,v 1.3 1999/01/11 22:21:30 kleink Exp $ */
/*
* Copyright (c) 1996 Thomas Gerner.
@ -30,11 +30,11 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <errno.h>
#include <stdio.h>
#include <unistd.h>
#include <string.h>
#include <fcntl.h>
#include <sys/errno.h>
#include <sys/ioctl.h>
#include <machine/msioctl.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: installboot.c,v 1.8 1998/12/19 19:17:23 he Exp $ */
/* $NetBSD: installboot.c,v 1.9 1999/01/11 22:21:30 kleink Exp $ */
/*
* Copyright (c) 1994 Paul Kranenburg
@ -44,8 +44,8 @@
#include <ufs/ufs/dinode.h>
#include <ufs/ufs/dir.h>
#include <ufs/ffs/fs.h>
#include <sys/errno.h>
#include <err.h>
#include <errno.h>
#include <a.out.h>
#include <fcntl.h>
#include <nlist.h>
@ -324,7 +324,7 @@ save_ffs(diskdev, bootblkname, bp, size)
if (size > fraglist->loadsz * DEV_BSIZE) {
inode = createfileondev(diskdev, bootblkname, bp, size);
if (inode == (ino_t) - 1)
if (inode == (ino_t)-1)
return inode;
/* paranoia */
@ -332,7 +332,7 @@ save_ffs(diskdev, bootblkname, bp, size)
(void) sleep(3);
if (setup_ffs_blks(diskdev, inode))
return (-1);
return (ino_t)(-1);
}
return inode;
}