From: Jim Meyering Date: Fri, 18 Dec 1998 14:09:29 +0000 (+0000) Subject: (UID_T_MAX, GID_T_MAX): Define them here instead. X-Git-Tag: FILEUTILS-4_1-b1~22 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a3e473c522231b38743af75477fda296f769413e;p=thirdparty%2Fcoreutils.git (UID_T_MAX, GID_T_MAX): Define them here instead. --- diff --git a/src/sys2.h b/src/sys2.h index e197cef154..d5071ec94c 100644 --- a/src/sys2.h +++ b/src/sys2.h @@ -3,6 +3,14 @@ more time, I'll merge the remaining things in system.h and everything in this file will go back there. */ +#ifndef UID_T_MAX +# define UID_T_MAX TYPE_MAXIMUM (uid_t) +#endif + +#ifndef GID_T_MAX +# define GID_T_MAX TYPE_MAXIMUM (gid_t) +#endif + #ifndef RETSIGTYPE # define RETSIGTYPE void #endif