changeset 8493:c62e99bf6912

Oops, don't use 'long double' here.
author Bruno Haible <bruno@clisp.org>
date Thu, 22 Mar 2007 11:35:12 +0000
parents 1dcdd2ec146b
children b556de32ce5a
files m4/frexp.m4
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/m4/frexp.m4
+++ b/m4/frexp.m4
@@ -12,7 +12,7 @@
     [gl_cv_func_frexp_no_libm],
     [
       AC_TRY_LINK([#include <math.h>
-                   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 @@
         save_LIBS="$LIBS"
         LIBS="$LIBS -lm"
         AC_TRY_LINK([#include <math.h>
-                     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])