summaryrefslogtreecommitdiff
path: root/libgfortran/c99_protos.h
diff options
context:
space:
mode:
authorfxcoudert <fxcoudert@138bc75d-0d04-0410-961f-82ee72b054a4>2007-08-05 22:14:34 +0000
committerfxcoudert <fxcoudert@138bc75d-0d04-0410-961f-82ee72b054a4>2007-08-05 22:14:34 +0000
commita55a9c5d452056d92ce05eb38d3482918d11e180 (patch)
treef504b2d268647874e55d8ef70dee853132ef178d /libgfortran/c99_protos.h
parente6ae3136e73babc84640f4db7f653242414ce605 (diff)
downloadgcc-a55a9c5d452056d92ce05eb38d3482918d11e180.tar.gz
2007-08-05 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
PR fortran/31202 * intrinsics/c99_functions.c (roundl): Provide fallback implementation for systems without ceill. * c99_protos.h (roundl): Define prototype in all cases. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@127227 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgfortran/c99_protos.h')
-rw-r--r--libgfortran/c99_protos.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libgfortran/c99_protos.h b/libgfortran/c99_protos.h
index c4738db51a0..e511b687eea 100644
--- a/libgfortran/c99_protos.h
+++ b/libgfortran/c99_protos.h
@@ -200,7 +200,7 @@ extern double round(double);
extern float roundf(float);
#endif
-#if !defined(HAVE_ROUNDL) && defined(HAVE_CEILL)
+#if !defined(HAVE_ROUNDL)
#define HAVE_ROUNDL 1
extern long double roundl(long double);
#endif