commit | b828eaeb4512baba6d43a56da682bd7329079822 | [log] [tgz] |
---|---|---|
author | Dan Albert <danalbert@google.com> | Tue Jul 22 00:30:52 2014 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Mon Jul 21 15:45:37 2014 +0000 |
tree | 483b793c397fa80ba119f84358a868671bf1dc3e | |
parent | 1fb90a8aa0086f7e4f7960a5b916b8605a9a3c96 [diff] | |
parent | ee7f1b5946dffa3aa95394b8cf6f15527f1068eb [diff] |
Merge "There is no _MIN for unsigned types."
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