From: Jim Meyering Date: Mon, 10 Mar 2003 10:41:24 +0000 (+0000) Subject: (INT_MIN): Define, if necessary. X-Git-Tag: v4.5.10~38 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b44a6e85658f77ec1ec3a8947b4eb497892e9db2;p=thirdparty%2Fcoreutils.git (INT_MIN): Define, if necessary. --- diff --git a/src/sys2.h b/src/sys2.h index 808552a041..1030bc3cd6 100644 --- a/src/sys2.h +++ b/src/sys2.h @@ -559,6 +559,10 @@ enum # define INT_MAX TYPE_MAXIMUM (int) #endif +#ifndef INT_MIN +# define INT_MIN TYPE_MINIMUM (int) +#endif + #ifndef UINT_MAX # define UINT_MAX TYPE_MAXIMUM (unsigned int) #endif