add config.h when compiled as host tool.

This commit is contained in:
is 2002-01-22 13:03:57 +00:00
parent f2f685f22a
commit ef3617499c
2 changed files with 12 additions and 4 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: strsuftoull.c,v 1.3 2001/11/30 00:12:04 thorpej Exp $ */
/* $NetBSD: strsuftoull.c,v 1.4 2002/01/22 13:03:58 is Exp $ */
/*-
* Copyright (c) 1991, 1993, 1994
@ -75,9 +75,13 @@
#include <sys/cdefs.h>
#ifndef lint
__RCSID("$NetBSD: strsuftoull.c,v 1.3 2001/11/30 00:12:04 thorpej Exp $");
__RCSID("$NetBSD: strsuftoull.c,v 1.4 2002/01/22 13:03:58 is Exp $");
#endif /* not lint */
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <sys/types.h>
#include <sys/time.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: makefs.c,v 1.9 2002/01/18 08:39:24 lukem Exp $ */
/* $NetBSD: makefs.c,v 1.10 2002/01/22 13:03:57 is Exp $ */
/*
* Copyright (c) 2001 Wasabi Systems, Inc.
@ -37,9 +37,13 @@
#include <sys/cdefs.h>
#ifndef __lint
__RCSID("$NetBSD: makefs.c,v 1.9 2002/01/18 08:39:24 lukem Exp $");
__RCSID("$NetBSD: makefs.c,v 1.10 2002/01/22 13:03:57 is Exp $");
#endif /* !__lint */
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <assert.h>
#include <ctype.h>
#include <err.h>