When building as host tool don't include "../../include/util.h".

opendisk() declared in that file is not used in this case anyway, and
<util.h> pulls in unwatned includes (e.g. <utmpx.h> doesn't exist on
FreeBSD 4.*).
This commit is contained in:
uwe 2005-08-27 22:43:40 +00:00
parent d42d0f4fb3
commit 25503c6713
1 changed files with 2 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: fdisk.c,v 1.92 2005/06/27 01:00:05 christos Exp $ */
/* $NetBSD: fdisk.c,v 1.93 2005/08/27 22:43:40 uwe Exp $ */
/*
* Mach Operating System
@ -39,7 +39,7 @@
#include <sys/cdefs.h>
#ifndef lint
__RCSID("$NetBSD: fdisk.c,v 1.92 2005/06/27 01:00:05 christos Exp $");
__RCSID("$NetBSD: fdisk.c,v 1.93 2005/08/27 22:43:40 uwe Exp $");
#endif /* not lint */
#define MBRPTYPENAMES
@ -71,7 +71,6 @@ __RCSID("$NetBSD: fdisk.c,v 1.92 2005/06/27 01:00:05 christos Exp $");
#if HAVE_NBTOOL_CONFIG_H
#include "../../include/disktab.h"
#include "../../include/util.h"
#else
#include <disktab.h>
#include <util.h>