* include/stdint.h (WINT_MIN): Fix sign.

This commit is contained in:
Corinna Vinschen 2007-04-06 08:25:28 +00:00
parent f12b93442f
commit bde9647c6a
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2007-04-06 Eric Blake <ebb9@byu.net>
* include/stdint.h (WINT_MIN): Fix sign.
2007-04-04 Eric Blake <ebb9@byu.net>
* include/stdint.h (WINT_MIN, WINT_MAX): Fix definition.

View File

@ -158,7 +158,7 @@ typedef unsigned long long uintmax_t;
#endif
#ifndef WINT_MIN
#define WINT_MIN 0
#define WINT_MIN 0U
#define WINT_MAX UINT_MAX
#endif