From: Ulrich Drepper Date: Thu, 29 Dec 2005 18:00:11 +0000 (+0000) Subject: * stdio-common/tstdiomisc.c [FLT_EVAL_METHOD!=2] (dbl_max): X-Git-Tag: upstream/2.30~16014 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=099cf5dba2c908f77561629a03bd6fac5e4cdd3a;p=external%2Fglibc.git * stdio-common/tstdiomisc.c [FLT_EVAL_METHOD!=2] (dbl_max): Defining as macro as before the last change. --- diff --git a/ChangeLog b/ChangeLog index d15c540..eacf7e1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2005-12-29 Ulrich Drepper + * stdio-common/tstdiomisc.c [FLT_EVAL_METHOD!=2] (dbl_max): + Defining as macro as before the last change. + * sysdeps/unix/sysv/linux/sigaction.c: If WRAPPER_INCLUDE is defined, include the named file. * sysdeps/unix/sysv/linux/sparc/sparc32/sigaction.c: Likewise. diff --git a/stdio-common/tstdiomisc.c b/stdio-common/tstdiomisc.c index 9aade2b..e89487c 100644 --- a/stdio-common/tstdiomisc.c +++ b/stdio-common/tstdiomisc.c @@ -51,7 +51,7 @@ volatile long double dbl_max = LDBL_MAX; # define FLT_FLT_FMT "%Lf %LF" # define FLT_FLT_WFMT L"%Lf %LF" #else -volatile double dbl_max = DBL_MAX; +# define dbl_max DBL_MAX # define FLT_FLT_FMT "%f %F" # define FLT_FLT_WFMT L"%f %F" #endif