for lgamma should set errno to ERANGE, not EDOM.
authorUlrich Drepper <drepper@redhat.com>
Sat, 25 Apr 2009 16:16:28 +0000 (16:16 +0000)
committerUlrich Drepper <drepper@redhat.com>
Sat, 25 Apr 2009 16:16:28 +0000 (16:16 +0000)
ChangeLog
sysdeps/generic/stdint.h

index 30c7e53..1f749c5 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -5,12 +5,9 @@
        * include/features.h: _POSIX_C_SOURCE >= 200112L implies C99.
 
        * sysdeps/ieee754/k_standard.c (__kernel_standard): Pole errors
-       for lgamma should se errno to ERANGE, not EDOM.
+       for lgamma should set errno to ERANGE, not EDOM.
        * math/libm-test.inc (lgamma_test): Check errno for pole errors.
 
-       * sysdeps/generic/stdint.h (WINT_MAX): Define as 2147483647 since
-       this is the maximum UCS4 value.
-
 2009-04-24  Ulrich Drepper  <drepper@redhat.com>
 
        [BZ #10093]
index 98aaec1..2c729ad 100644 (file)
@@ -277,7 +277,7 @@ typedef unsigned long long int      uintmax_t;
 
 /* Limits of `wint_t'.  */
 # define WINT_MIN              (0u)
-# define WINT_MAX              (2147483647)
+# define WINT_MAX              (4294967295u)
 
 #endif /* C++ && limit macros */