diff options
author | 2001-08-23 16:12:40 +0000 | |
---|---|---|
committer | 2001-08-23 16:12:40 +0000 | |
commit | c6313cee465e449117ed3550465b25d1350fd2eb (patch) | |
tree | 76d81f6a3b3d922534e8478693a3a574f797bde3 | |
parent | weak_alias and warn_references (diff) | |
download | wireguard-openbsd-c6313cee465e449117ed3550465b25d1350fd2eb.tar.xz wireguard-openbsd-c6313cee465e449117ed3550465b25d1350fd2eb.zip |
UID_MAX and GID_MAX
-rw-r--r-- | sys/arch/sparc64/include/limits.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/sparc64/include/limits.h b/sys/arch/sparc64/include/limits.h index 7f028d311af..36feb097a3f 100644 --- a/sys/arch/sparc64/include/limits.h +++ b/sys/arch/sparc64/include/limits.h @@ -1,4 +1,4 @@ -/* $OpenBSD: limits.h,v 1.1.1.1 2001/08/18 04:16:37 jason Exp $ */ +/* $OpenBSD: limits.h,v 1.2 2001/08/23 16:12:40 art Exp $ */ /* $NetBSD: limits.h,v 1.8 2000/08/08 22:31:14 tshiozak Exp $ */ /* @@ -79,6 +79,8 @@ #if !defined(_POSIX_C_SOURCE) && !defined(_XOPEN_SOURCE) || \ defined(_ISOC99_SOURCE) || (__STDC_VERSION__ - 0) >= 199901L +#define UID_MAX UINT_MAX /* max value for uid_t */ +#define GID_MAX UINT_MAX /* max value for gid_t */ #define ULLONG_MAX 0xffffffffffffffffULL /* max unsigned long long */ #define LLONG_MAX 0x7fffffffffffffffLL /* max signed long long */ #define LLONG_MIN (-0x7fffffffffffffffLL-1) /* min signed long long */ |