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:
authorJeff Johnston <jjohnstn@redhat.com>2009-04-20 22:06:14 +0400
committerJeff Johnston <jjohnstn@redhat.com>2009-04-20 22:06:14 +0400
commitbd5f034706a48b4e1c920df462621325aede1392 (patch)
treeeed5d6de1ff5831449604e389a6f76140d6ffdc8 /newlib/libc
parent5698171a3f3c7d8dd535466fd8f54e9deb8f170f (diff)
2009-04-20 Jeff johnston <jjohnstn@redhat.com>
* libc/include/math.h: Change _LDBL_EQ_DBL flag usage to be _HAVE_LDBL_MATH. * libc/include/stdlib.h: Change _LDBL_EQ_DBL flag usage to be _HAVE_LDBL_STDLIB.
Diffstat (limited to 'newlib/libc')
-rw-r--r--newlib/libc/include/math.h8
-rw-r--r--newlib/libc/include/stdlib.h6
2 files changed, 7 insertions, 7 deletions
diff --git a/newlib/libc/include/math.h b/newlib/libc/include/math.h
index 6f61583a4..87b2626b5 100644
--- a/newlib/libc/include/math.h
+++ b/newlib/libc/include/math.h
@@ -334,8 +334,8 @@ extern float log2f _PARAMS((float));
extern float hypotf _PARAMS((float, float));
#endif /* ! defined (_REENT_ONLY) */
-/* On platforms where long double is as wide as double. */
-#ifdef _LDBL_EQ_DBL
+/* On platforms where long double math functions are supported. */
+#ifdef _HAVE_LDBL_MATH
/* Reentrant ANSI C functions. */
#ifndef __math_68881
extern long double atanl _PARAMS((long double));
@@ -400,14 +400,14 @@ extern long double lgammal _PARAMS((long double));
extern long double erfl _PARAMS((long double));
extern long double erfcl _PARAMS((long double));
#endif /* ! defined (_REENT_ONLY) */
-#else /* !_LDBL_EQ_DBL */
+#else /* !_HAVE_LDBL_MATH */
#ifdef __i386__
/* Other long double precision functions. */
extern _LONG_DOUBLE rintl _PARAMS((_LONG_DOUBLE));
extern long int lrintl _PARAMS((_LONG_DOUBLE));
extern _LONG_LONG_TYPE llrintl _PARAMS((_LONG_DOUBLE));
#endif /* __i386__ */
-#endif /* !_LDBL_EQ_DBL */
+#endif /* !_HAVE_LDBL_MATH */
#endif /* !defined (__STRICT_ANSI__) || defined(__cplusplus) || __STDC_VERSION__ >= 199901L */
diff --git a/newlib/libc/include/stdlib.h b/newlib/libc/include/stdlib.h
index 8f64f09c5..5b44bb6e1 100644
--- a/newlib/libc/include/stdlib.h
+++ b/newlib/libc/include/stdlib.h
@@ -199,11 +199,11 @@ int _EXFUN(_system_r,(struct _reent *, const char *));
_VOID _EXFUN(__eprintf,(const char *, const char *, unsigned int, const char *));
-/* On platforms where long double is as wide as double. */
-#ifdef _LDBL_EQ_DBL
+/* On platforms where long double stdlib functions are supported. */
+#ifdef _HAVE_LDBL_STDLIB
extern long double strtold (const char *, char **);
extern long double wcstold (const wchar_t *, wchar_t **);
-#endif /* LDBL_EQ_DBL */
+#endif /* _HAVE_LDBL_STDLIB */
_END_STD_C