summaryrefslogtreecommitdiff
path: root/sys/arch/alpha
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2002-07-30 01:22:01 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2002-07-30 01:22:01 +0000
commite3ef842646596e163c60e292f288af0cdfa72e81 (patch)
treeee1ba66edc50d4fa1fc0becc4e970e72b451d718 /sys/arch/alpha
parentdb2494bd1fc703f7febbe11cad2faa2e292eca62 (diff)
Add SIZE_MAX define. This is the same as SIZE_T_MAX but more portable.
The only OSes I've seen that use SIZE_T_MAX are 4.4BSD-derived whereas SYSV things seem to use SIZE_MAX. It is also consistent with SSIZE_MAX (which we already have). deraadt@ OK
Diffstat (limited to 'sys/arch/alpha')
-rw-r--r--sys/arch/alpha/include/limits.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/alpha/include/limits.h b/sys/arch/alpha/include/limits.h
index 71f75a01b34..aad0841dfeb 100644
--- a/sys/arch/alpha/include/limits.h
+++ b/sys/arch/alpha/include/limits.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: limits.h,v 1.8 2002/04/24 21:53:11 espie Exp $ */
+/* $OpenBSD: limits.h,v 1.9 2002/07/30 01:21:59 millert Exp $ */
/* $NetBSD: limits.h,v 1.2 1996/04/12 01:38:25 cgd Exp $ */
/*
@@ -42,6 +42,7 @@
#define MB_LEN_MAX 6 /* Allow 31 bit UTF2 */
#if !defined(_ANSI_SOURCE)
+#define SIZE_MAX ULONG_MAX /* max value for a size_t */
#define SSIZE_MAX LONG_MAX /* max value for a ssize_t */
#if !defined(_POSIX_SOURCE) && !defined(_XOPEN_SOURCE)