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:
Diffstat (limited to 'newlib/libm/math')
-rw-r--r--newlib/libm/math/w_log.c2
-rw-r--r--newlib/libm/math/w_log10.c2
-rw-r--r--newlib/libm/math/wf_log.c2
-rw-r--r--newlib/libm/math/wf_log10.c2
4 files changed, 4 insertions, 4 deletions
diff --git a/newlib/libm/math/w_log.c b/newlib/libm/math/w_log.c
index e23efd7e6..38896cd25 100644
--- a/newlib/libm/math/w_log.c
+++ b/newlib/libm/math/w_log.c
@@ -95,7 +95,7 @@ PORTABILITY
if (_LIB_VERSION == _POSIX_)
errno = ERANGE;
else if (!matherr(&exc)) {
- errno = EDOM;
+ errno = ERANGE;
}
} else {
/* log(x<0) */
diff --git a/newlib/libm/math/w_log10.c b/newlib/libm/math/w_log10.c
index 7c3966954..66f0e78d1 100644
--- a/newlib/libm/math/w_log10.c
+++ b/newlib/libm/math/w_log10.c
@@ -93,7 +93,7 @@ PORTABILITY
if (_LIB_VERSION == _POSIX_)
errno = ERANGE;
else if (!matherr(&exc)) {
- errno = EDOM;
+ errno = ERANGE;
}
} else {
/* log10(x<0) */
diff --git a/newlib/libm/math/wf_log.c b/newlib/libm/math/wf_log.c
index 369ef3261..989eeb335 100644
--- a/newlib/libm/math/wf_log.c
+++ b/newlib/libm/math/wf_log.c
@@ -53,7 +53,7 @@
if (_LIB_VERSION == _POSIX_)
errno = ERANGE;
else if (!matherr(&exc)) {
- errno = EDOM;
+ errno = ERANGE;
}
} else {
/* logf(x<0) */
diff --git a/newlib/libm/math/wf_log10.c b/newlib/libm/math/wf_log10.c
index 728913500..41dd93a7b 100644
--- a/newlib/libm/math/wf_log10.c
+++ b/newlib/libm/math/wf_log10.c
@@ -54,7 +54,7 @@
if (_LIB_VERSION == _POSIX_)
errno = ERANGE;
else if (!matherr(&exc)) {
- errno = EDOM;
+ errno = ERANGE;
}
} else {
/* log10f(x<0) */