From a3e473c522231b38743af75477fda296f769413e Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Fri, 18 Dec 1998 14:09:29 +0000 Subject: [PATCH] (UID_T_MAX, GID_T_MAX): Define them here instead. --- src/sys2.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/sys2.h b/src/sys2.h index e197cef..d5071ec 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 -- 2.7.4