Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAditya Upadhyay <aadit0402@gmail.com>2017-07-28 20:34:34 +0300
committerCorinna Vinschen <corinna@vinschen.de>2017-07-28 21:30:30 +0300
commit124ccc500e22e5d118fcb98a190cdeb699331de2 (patch)
treeb7f2c7fd9fc733995f90c4776590568f709be855 /newlib/libm/complex
parent7dad0e441a98f4ec79dc10745b21df954b1ba768 (diff)
Fixing HUGE_VALF to HUGE_VALL.
Diffstat (limited to 'newlib/libm/complex')
-rw-r--r--newlib/libm/complex/ctanl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/newlib/libm/complex/ctanl.c b/newlib/libm/complex/ctanl.c
index 9255bdb07..c5c887c74 100644
--- a/newlib/libm/complex/ctanl.c
+++ b/newlib/libm/complex/ctanl.c
@@ -47,7 +47,7 @@ ctanl(long double complex z)
if (d == 0.0L) {
/* mtherr ("ctan", OVERFLOW); */
- w = HUGE_VALF + HUGE_VALF * I;
+ w = HUGE_VALL + HUGE_VALL * I;
return w;
}