summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Laier <mlaier@FreeBSD.org>2004-03-15 13:43:44 +0000
committerMax Laier <mlaier@FreeBSD.org>2004-03-15 13:43:44 +0000
commit657ea5eb2cb0d547da436eb93c71e9d7464d3cb4 (patch)
tree17db7f2fd4cc08e5a289d10c449505fe89b0064c
parentb83a49e9b95a07c351cd2426f390e9761cc94430 (diff)
Notes
-rw-r--r--sys/sys/limits.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/sys/limits.h b/sys/sys/limits.h
index 8b4be2e9f33c..e7a1ed09c168 100644
--- a/sys/sys/limits.h
+++ b/sys/sys/limits.h
@@ -66,9 +66,6 @@
#define LONG_MAX __LONG_MAX /* max for a long */
#define LONG_MIN __LONG_MIN /* min for a long */
-#define UID_MAX UINT_MAX /* max value for a uid_t */
-#define GID_MAX UINT_MAX /* max value for a gid_t */
-
#ifdef __LONG_LONG_SUPPORTED
#define ULLONG_MAX __ULLONG_MAX /* max for an unsigned long long */
#define LLONG_MAX __LLONG_MAX /* max for a long long */
@@ -87,6 +84,9 @@
#endif
#if __BSD_VISIBLE
+#define GID_MAX UINT_MAX /* max value for a gid_t */
+#define UID_MAX UINT_MAX /* max value for a uid_t */
+
#define UQUAD_MAX (__UQUAD_MAX) /* max value for a uquad_t */
#define QUAD_MAX (__QUAD_MAX) /* max value for a quad_t */
#define QUAD_MIN (__QUAD_MIN) /* min value for a quad_t */