X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fsqrtl.c;h=3ebee4dee5227ed8c03aaf677ff4009a3eeeee2c;hb=32839c247d8c816279e1b5d1a3ed68c5652cf72e;hp=aae859cc5f892eb24bd7190ce7553d81592d19b1;hpb=3030c5b5e0a5199e16b05927da72c43c42f211c3;p=gnulib.git diff --git a/lib/sqrtl.c b/lib/sqrtl.c index aae859cc5..3ebee4dee 100644 --- a/lib/sqrtl.c +++ b/lib/sqrtl.c @@ -1,7 +1,7 @@ /* Emulation for sqrtl. Contributed by Paolo Bonzini - Copyright 2002, 2003, 2007, 2009 Free Software Foundation, Inc. + Copyright 2002, 2003, 2007, 2009, 2010 Free Software Foundation, Inc. This file is part of gnulib. @@ -27,7 +27,7 @@ /* A simple Newton-Raphson method. */ long double -sqrtl(long double x) +sqrtl (long double x) { long double delta, y; int exponent; @@ -38,7 +38,7 @@ sqrtl(long double x) /* Check for negative numbers */ if (x < 0.0L) - return (long double) sqrt(-1); + return (long double) sqrt (-1); /* Check for zero and infinites */ if (x + x == x)