commit | d0a80a927f874472f5397a02a818eb2e6fce9456 | [log] [tgz] |
---|---|---|
author | Dan Albert <danalbert@google.com> | Mon Jul 21 17:16:30 2014 -0700 |
committer | Dan Albert <danalbert@google.com> | Tue Jul 29 14:20:37 2014 -0700 |
tree | b414fdd30a6e39e952b87983bd7a21fdcb3548f3 | |
parent | 4e5860958767ecc7bc455d2a5e1d2a2096a1c79f [diff] |
There is no _MIN for unsigned types. Change-Id: I49c38e51197b750210bdbf28c9cf6db30452a206 (cherry picked from commit ee7f1b5946dffa3aa95394b8cf6f15527f1068eb)
diff --git a/libc/include/stdint.h b/libc/include/stdint.h index f34843c..a6f8505 100644 --- a/libc/include/stdint.h +++ b/libc/include/stdint.h
@@ -203,7 +203,7 @@ #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