diff options
author | wiz <wiz@pkgsrc.org> | 2005-11-08 20:17:56 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2005-11-08 20:17:56 +0000 |
commit | 30ce384efb9a2ca0a4e09f39abc83297b7463ead (patch) | |
tree | 663d20203fa75188901d29b752456acc13b3a9f6 /pkgtools/pkg_install | |
parent | 42ee6aebcdfe6daad824b49530d10aced51842f2 (diff) | |
download | pkgsrc-30ce384efb9a2ca0a4e09f39abc83297b7463ead.tar.gz |
Sync with basesrc 1.3:
Remove some unnecessary header includes.
Diffstat (limited to 'pkgtools/pkg_install')
-rw-r--r-- | pkgtools/pkg_install/files/lib/dewey.c | 18 |
1 files changed, 3 insertions, 15 deletions
diff --git a/pkgtools/pkg_install/files/lib/dewey.c b/pkgtools/pkg_install/files/lib/dewey.c index 0bb04f90c7b..2160355e26d 100644 --- a/pkgtools/pkg_install/files/lib/dewey.c +++ b/pkgtools/pkg_install/files/lib/dewey.c @@ -1,4 +1,4 @@ -/* $NetBSD: dewey.c,v 1.2 2005/11/07 18:53:53 tv Exp $ */ +/* $NetBSD: dewey.c,v 1.3 2005/11/08 20:17:56 wiz Exp $ */ #if HAVE_CONFIG_H #include "config.h" @@ -25,23 +25,11 @@ * */ -#if HAVE_ASSERT_H -#include <assert.h> -#endif #if HAVE_CTYPE_H #include <ctype.h> #endif -#if HAVE_ERR_H -#include <err.h> -#endif -#if HAVE_FNMATCH_H -#include <fnmatch.h> -#endif -#if HAVE_INTTYPES_H -#include <inttypes.h> -#endif -#if HAVE_STRING_H -#include <string.h> +#if HAVE_STDLIB_H +#include <stdlib.h> #endif #include "defs.h" |