From: Jim Meyering Date: Mon, 2 Jun 2003 06:56:30 +0000 (+0000) Subject: Always include , since we assume C89. X-Git-Tag: v5.0.1~419 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=885d681dff2ab87b9d17404d27b317614dd80155;p=thirdparty%2Fcoreutils.git Always include , since we assume C89. Include without checking for HAVE_LIMITS_H. --- diff --git a/src/system.h b/src/system.h index 33f9fba37d..c4c4d64e66 100644 --- a/src/system.h +++ b/src/system.h @@ -52,11 +52,9 @@ you must include before including this file #endif -#if HAVE_LIMITS_H /* limits.h must come before pathmax.h because limits.h on some systems undefs PATH_MAX, whereas pathmax.h sets PATH_MAX. */ -# include -#endif +#include #include "pathmax.h" #include "localedir.h" @@ -109,14 +107,7 @@ struct utimbuf /* Don't use bcopy! Use memmove if source and destination may overlap, memcpy otherwise. */ -#if HAVE_STRING_H -# if !STDC_HEADERS && HAVE_MEMORY_H -# include -# endif -# include -#else -# include -#endif +#include #if ! HAVE_DECL_MEMRCHR void *memrchr (const void *, int, size_t); #endif