From: Bruno Haible Date: Thu, 22 Mar 2007 11:35:12 +0000 (+0000) Subject: Oops, don't use 'long double' here. X-Git-Tag: cvs-readonly~725 X-Git-Url: http://erislabs.org.uk/gitweb/?a=commitdiff_plain;h=6a432fe75017346930867ec2b26c675e7049f8f1;p=gnulib.git Oops, don't use 'long double' here. --- diff --git a/m4/frexp.m4 b/m4/frexp.m4 index b0f0d7325..60d897b89 100644 --- a/m4/frexp.m4 +++ b/m4/frexp.m4 @@ -12,7 +12,7 @@ AC_DEFUN([gl_FUNC_FREXP], [gl_cv_func_frexp_no_libm], [ AC_TRY_LINK([#include - long double x;], + double x;], [int e; return frexp (x, &e) > 0;], [gl_cv_func_frexp_no_libm=yes], [gl_cv_func_frexp_no_libm=no]) @@ -24,7 +24,7 @@ AC_DEFUN([gl_FUNC_FREXP], save_LIBS="$LIBS" LIBS="$LIBS -lm" AC_TRY_LINK([#include - long double x;], + double x;], [int e; return frexp (x, &e) > 0;], [gl_cv_func_frexp_in_libm=yes], [gl_cv_func_frexp_in_libm=no])