+2006-10-08 Francois-Xavier Coudert <coudert@clipper.ens.fr>
+
+ * c99_protos.h: Correctly protect definitions of prototypes for
+ asinhf, acoshf and atanhf to be the same as in intrinsics/hyper.c.
+
2006-10-08 Paul Thomas <pault@gcc.gnu.org>
Erik Edelmann <edelmann@gcc.gnu.org>
/* Declarations of various C99 functions
- Copyright (C) 2004 Free Software Foundation, Inc.
+ Copyright (C) 2004, 2006 Free Software Foundation, Inc.
This file is part of the GNU Fortran 95 runtime library (libgfortran).
extern float acosf(float);
#endif
-#ifndef HAVE_ACOSHF
+#if HAVE_ACOSH && !HAVE_ACOSHF
#define HAVE_ACOSHF 1
extern float acoshf(float);
#endif
extern float asinf(float);
#endif
-#ifndef HAVE_ASINHF
+#if HAVE_ASINH && !HAVE_ASINHF
#define HAVE_ASINHF 1
extern float asinhf(float);
#endif
extern float atanf(float);
#endif
-#ifndef HAVE_ATANHF
+#if HAVE_ATANH && !HAVE_ATANHF
#define HAVE_ATANHF 1
extern float atanhf(float);
#endif