From b8d73e358ba06f126c3ed09649354f8f0fe9a67a Mon Sep 17 00:00:00 2001 From: millert Date: Thu, 30 Apr 2015 18:19:25 +0000 Subject: [PATCH] SIZE_MAX is no longer in limits.h --- sys/sys/stdint.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/sys/stdint.h b/sys/sys/stdint.h index 3ab49b09642..03ff5aad286 100644 --- a/sys/sys/stdint.h +++ b/sys/sys/stdint.h @@ -1,4 +1,4 @@ -/* $OpenBSD: stdint.h,v 1.9 2014/04/01 05:04:50 matthew Exp $ */ +/* $OpenBSD: stdint.h,v 1.10 2015/04/30 18:19:25 millert Exp $ */ /* * Copyright (c) 1997, 2005 Todd C. Miller @@ -186,7 +186,7 @@ typedef __uintmax_t uintmax_t; #define SIG_ATOMIC_MIN INT32_MIN #define SIG_ATOMIC_MAX INT32_MAX -/* Limits of size_t (also in limits.h) */ +/* Limit of size_t */ #ifndef SIZE_MAX #define SIZE_MAX UINTPTR_MAX #endif -- 2.20.1