From b3918e2f66bd548ac543a574b1669b5fae5eada5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Duval?= Date: Sat, 23 Feb 2008 22:31:19 +0000 Subject: [PATCH] added SIZE_MAX to stdint.h git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@24085 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- headers/posix/stdint.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/headers/posix/stdint.h b/headers/posix/stdint.h index d0aee5fb3c..fc89bd9fe5 100644 --- a/headers/posix/stdint.h +++ b/headers/posix/stdint.h @@ -120,6 +120,9 @@ typedef uint32_t uintptr_t; typedef signed long long intmax_t; typedef unsigned long long uintmax_t; +/* Other types */ +#define SIZE_MAX UINT32_MAX + /* BSD compatibility */