1 /*
2 Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
3
4 Developed at SunPro, a Sun Microsystems, Inc. business.
5 Permission to use, copy, modify, and distribute this
6 software is freely granted, provided that this notice
7 is preserved.
8 */
9 /*
10 * drem() wrapper for remainder().
11 *
12 * Written by J.T. Conklin, <jtc@wimsey.com>
13 * Placed into the Public Domain, 1994.
14 */
15
16 #include "fdlibm.h"
17
18 #ifdef _NEED_FLOAT64
19
20 __float64
drem64(__float64 x,__float64 y)21 drem64(__float64 x, __float64 y)
22 {
23 return remainder64(x, y);
24 }
25
26 _MATH_ALIAS_d_dd(drem)
27
28 #endif
29