From ee7f1b5946dffa3aa95394b8cf6f15527f1068eb Mon Sep 17 00:00:00 2001 From: Dan Albert Date: Mon, 21 Jul 2014 17:16:30 -0700 Subject: [PATCH] There is no _MIN for unsigned types. Change-Id: I49c38e51197b750210bdbf28c9cf6db30452a206 --- libc/include/stdint.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libc/include/stdint.h b/libc/include/stdint.h index f34843c09..a6f8505f4 100644 --- a/libc/include/stdint.h +++ b/libc/include/stdint.h @@ -203,7 +203,7 @@ typedef int64_t intmax_t; #if defined(__WINT_UNSIGNED__) # define WINT_MAX UINT32_MAX -# define WINT_MIN UINT32_MIN +# define WINT_MIN 0 #else # define WINT_MAX INT32_MAX # define WINT_MIN INT32_MIN -- 2.11.0