summaryrefslogtreecommitdiff
path: root/lib/exclude.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2003-09-10 08:31:47 +0000
committerJim Meyering <jim@meyering.net>2003-09-10 08:31:47 +0000
commitbcbbea53193beb4b757117b8617a6085d220b835 (patch)
tree99dd417dc93a4611bd15d4ec1e1a2496377095c1 /lib/exclude.c
parent3db9acf5e602deee3759c7b094ad66be5c67496a (diff)
downloadcoreutils-bcbbea53193beb4b757117b8617a6085d220b835.tar.xz
Include <stdlib.h>, <string.h> unconditionally.
Diffstat (limited to 'lib/exclude.c')
-rw-r--r--lib/exclude.c11
1 files changed, 2 insertions, 9 deletions
diff --git a/lib/exclude.c b/lib/exclude.c
index 7c038b23e..3d1d3bfcb 100644
--- a/lib/exclude.c
+++ b/lib/exclude.c
@@ -33,15 +33,8 @@ extern int errno;
#endif
#include <stddef.h>
#include <stdio.h>
-#if HAVE_STDLIB_H
-# include <stdlib.h>
-#endif
-#if HAVE_STRING_H
-# include <string.h>
-#endif
-#if HAVE_STRINGS_H
-# include <strings.h>
-#endif
+#include <stdlib.h>
+#include <string.h>
#if HAVE_INTTYPES_H
# include <inttypes.h>
#else