From: Jim Meyering Date: Sun, 21 Dec 1997 22:20:01 +0000 (+0000) Subject: Don't include limits.h. X-Git-Tag: FILEUTILS-3_16h~26 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6123a888527ef69fc2ff91fe41e23558eac81a7e;p=thirdparty%2Fcoreutils.git Don't include limits.h. (UINT_MAX): Don't define. (INT_MAX): Don't define. These are all done in system.h now. --- diff --git a/src/factor.c b/src/factor.c index 38ae811846..843c58896b 100644 --- a/src/factor.c +++ b/src/factor.c @@ -25,18 +25,6 @@ #include #define NDEBUG 1 -#ifdef HAVE_LIMITS_H -# include -#endif /* HAVE_LIMITS_H */ - -#ifndef UINT_MAX -# define UINT_MAX ((unsigned int) ~(unsigned int) 0) -#endif - -#ifndef INT_MAX -# define INT_MAX ((int) (UINT_MAX >> 1)) -#endif - #include "system.h" #include "long-options.h" #include "error.h"