summaryrefslogtreecommitdiff
path: root/sys/arch/hppa
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2000-07-31 20:06:05 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2000-07-31 20:06:05 +0000
commited55c022eafcf15e5a510f0a946be4c6b3e71e5a (patch)
treed387140a598c85b999f3aa4b4bd98304d5479b27 /sys/arch/hppa
parent5484bfabe3fe4d9d8c102e440782da9f255f5ed4 (diff)
Add defines for ULLONG_MAX, LLONG_MAX, and LLONG_MIN in terms of
UQUAD_MAX, QUAD_MAX, and QUAD_MIN respectively.
Diffstat (limited to 'sys/arch/hppa')
-rw-r--r--sys/arch/hppa/include/limits.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/arch/hppa/include/limits.h b/sys/arch/hppa/include/limits.h
index e4eadb27e25..7f1e2b1e2a7 100644
--- a/sys/arch/hppa/include/limits.h
+++ b/sys/arch/hppa/include/limits.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: limits.h,v 1.1 1998/06/23 19:45:24 mickey Exp $ */
+/* $OpenBSD: limits.h,v 1.2 2000/07/31 20:06:02 millert Exp $ */
/*
* Copyright (c) 1992-1994, The University of Utah and
@@ -109,6 +109,9 @@
/* max value for a quad_t */
#define QUAD_MAX ((quad_t)(UQUAD_MAX >> 1))
#define QUAD_MIN (-QUAD_MAX-1) /* min value for a quad_t */
+#define ULLONG_MAX (UQUAD_MAX) /* max value for unsigned long long */
+#define LLONG_MAX (QUAD_MAX) /* max value for a signed long long */
+#define LLONG_MIN (QUAD_MIN) /* min value for a signed long long */
#endif /* !_POSIX_SOURCE */
#endif /* !_ANSI_SOURCE */