]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - math/w_remainderf.c
Improve the accuracy of tgamma (BZ #26983)
[thirdparty/glibc.git] / math / w_remainderf.c
index 5330cc07d3d58779232c6c94b9f00a41c7abf176..f663622268f8fd76e98be096ba0acf2658200ee9 100644 (file)
@@ -1,34 +1,5 @@
-/* Copyright (C) 2011-2014 Free Software Foundation, Inc.
-   This file is part of the GNU C Library.
-   Contributed by Ulrich Drepper <drepper@gmail.com>, 2011.
-
-   The GNU C Library is free software; you can redistribute it and/or
-   modify it under the terms of the GNU Lesser General Public
-   License as published by the Free Software Foundation; either
-   version 2.1 of the License, or (at your option) any later version.
-
-   The GNU C Library is distributed in the hope that it will be useful,
-   but WITHOUT ANY WARRANTY; without even the implied warranty of
-   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-   Lesser General Public License for more details.
-
-   You should have received a copy of the GNU Lesser General Public
-   License along with the GNU C Library; if not, see
-   <http://www.gnu.org/licenses/>.  */
-
-#include <math.h>
-#include <math_private.h>
-
-
-/* wrapper remainderf */
-float
-__remainderf (float x, float y)
-{
-  if (((__builtin_expect (y == 0.0f, 0) && ! __isnanf (x))
-       || (__builtin_expect (__isinf_nsf (x), 0) && ! __isnanf (y)))
-      && _LIB_VERSION != _IEEE_)
-    return __kernel_standard_f (x, y, 128); /* remainder domain */
-
-  return __ieee754_remainderf (x, y);
-}
-weak_alias (__remainderf, remainderf)
+#include <math-type-macros-float.h>
+#include <w_remainder_template.c>
+#if __USE_WRAPPER_TEMPLATE
+weak_alias (__remainderf, dremf)
+#endif