mirror of https://gitee.com/Nocallback/glibc.git
8 changed files with 25 additions and 74 deletions
@ -1,28 +0,0 @@ |
|||
/* Return minimum numeric value of X and Y.
|
|||
Copyright (C) 1997-2016 Free Software Foundation, Inc. |
|||
This file is part of the GNU C Library. |
|||
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997. |
|||
|
|||
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> |
|||
|
|||
|
|||
float |
|||
__fminf (float x, float y) |
|||
{ |
|||
return (islessequal (x, y) || isnan (y)) ? x : y; |
|||
} |
|||
weak_alias (__fminf, fminf) |
|||
@ -1,28 +0,0 @@ |
|||
/* Return minimum numeric value of X and Y.
|
|||
Copyright (C) 1997-2016 Free Software Foundation, Inc. |
|||
This file is part of the GNU C Library. |
|||
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997. |
|||
|
|||
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> |
|||
|
|||
|
|||
long double |
|||
__fminl (long double x, long double y) |
|||
{ |
|||
return (islessequal (x, y) || isnan (y)) ? x : y; |
|||
} |
|||
weak_alias (__fminl, fminl) |
|||
@ -1,5 +0,0 @@ |
|||
#include <math_ldbl_opt.h> |
|||
#include <math/s_fmin.c> |
|||
#if LONG_DOUBLE_COMPAT(libm, GLIBC_2_1) |
|||
compat_symbol (libm, __fmin, fminl, GLIBC_2_1); |
|||
#endif |
|||
@ -1,5 +0,0 @@ |
|||
#include <math_ldbl_opt.h> |
|||
#undef weak_alias |
|||
#define weak_alias(n,a) |
|||
#include <math/s_fminl.c> |
|||
long_double_symbol (libm, __fminl, fminl); |
|||
Loading…
Reference in new issue