commit | 9379ce694d8a6bd70341eee003e23e96e21352e5 | [log] [tgz] |
---|---|---|
author | Dan Albert <danalbert@google.com> | Tue Jul 29 22:42:15 2014 +0000 |
committer | Android (Google) Code Review <android-gerrit@google.com> | Fri Jul 25 21:16:23 2014 +0000 |
tree | 636e196c08215aaa4ee9b2a39507616644155e4a | |
parent | a1a813da8184153606bfcf8ffcce557eda09a5ba [diff] | |
parent | d0a80a927f874472f5397a02a818eb2e6fce9456 [diff] |
Merge "There is no _MIN for unsigned types." into lmp-dev
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