From e3ef842646596e163c60e292f288af0cdfa72e81 Mon Sep 17 00:00:00 2001 From: "Todd C. Miller" Date: Tue, 30 Jul 2002 01:22:01 +0000 Subject: 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 --- sys/arch/vax/include/limits.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'sys/arch/vax') diff --git a/sys/arch/vax/include/limits.h b/sys/arch/vax/include/limits.h index 36887664e92..6276c2f0f77 100644 --- a/sys/arch/vax/include/limits.h +++ b/sys/arch/vax/include/limits.h @@ -1,4 +1,4 @@ -/* $OpenBSD: limits.h,v 1.9 2002/04/24 21:53:12 espie Exp $ */ +/* $OpenBSD: limits.h,v 1.10 2002/07/30 01:22:00 millert Exp $ */ /* $NetBSD: limits.h,v 1.9 2000/03/07 19:33:01 kleink Exp $ */ /* @@ -42,6 +42,7 @@ #define MB_LEN_MAX 1 /* no multibyte characters */ #if !defined(_ANSI_SOURCE) +#define SIZE_MAX UINT_MAX /* max value for a size_t */ #define SSIZE_MAX INT_MAX /* max value for a ssize_t */ #if !defined(_POSIX_SOURCE) && !defined(_XOPEN_SOURCE) -- cgit v1.2.3