remove unnecessary #include.

This commit is contained in:
yamt 2005-04-27 09:50:26 +00:00
parent 0ad90d21c9
commit c67c589db3
2 changed files with 5 additions and 8 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: strhash.c,v 1.1 2004/09/23 16:44:26 tshiozak Exp $ */
/* $NetBSD: strhash.c,v 1.2 2005/04/27 09:50:26 yamt Exp $ */
/*-
* Copyright (c)2003, 2004 Citrus Project,
@ -28,14 +28,11 @@
#include <sys/cdefs.h>
#if defined(LIBC_SCCS) && !defined(lint)
__RCSID("$NetBSD: strhash.c,v 1.1 2004/09/23 16:44:26 tshiozak Exp $");
__RCSID("$NetBSD: strhash.c,v 1.2 2005/04/27 09:50:26 yamt Exp $");
#endif /* LIBC_SCCS and not lint */
#include <sys/param.h>
#include <sys/types.h>
#include <assert.h>
#include <stdio.h>
#include <string.h>
#include "libintl_local.h"

View File

@ -1,4 +1,4 @@
/* $NetBSD: sysdep.c,v 1.1 2004/09/23 21:35:27 tshiozak Exp $ */
/* $NetBSD: sysdep.c,v 1.2 2005/04/27 09:50:26 yamt Exp $ */
/*-
* Copyright (c)2004 Citrus Project,
@ -28,12 +28,12 @@
#include <sys/cdefs.h>
#if defined(LIBC_SCCS) && !defined(lint)
__RCSID("$NetBSD: sysdep.c,v 1.1 2004/09/23 21:35:27 tshiozak Exp $");
__RCSID("$NetBSD: sysdep.c,v 1.2 2005/04/27 09:50:26 yamt Exp $");
#endif /* LIBC_SCCS and not lint */
#include <sys/param.h>
#include <sys/types.h>
#include <assert.h>
#include <inttypes.h>
#include <stdlib.h>
#include <string.h>