1 /* @(#)w_fmod.c 5.1 93/09/24 */
3 * ====================================================
4 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
6 * Developed at SunPro, a Sun Microsystems, Inc. business.
7 * Permission to use, copy, modify, and distribute this
8 * software is freely granted, provided that this notice
10 * ====================================================
13 #include <sys/cdefs.h>
14 __RCSID("$NetBSD: w_fmodl.c,v 1.4 2013/11/21 13:41:10 martin Exp $");
19 #include "namespace.h"
22 #include "math_private.h"
24 #ifdef __HAVE_LONG_DOUBLE
27 __weak_alias(fmodl
, _fmodl
)
31 fmodl(long double x
, long double y
) /* wrapper fmod */
34 return __ieee754_fmodl(x
,y
);
37 z
= __ieee754_fmodl(x
,y
);
38 if(_LIB_VERSION
== _IEEE_
||isnan(y
)||isnan(x
)) return z
;
40 return __kernel_standard(x
,y
,227); /* fmod(x,0) */