1 /* Copyright (C) 2015 by Red Hat, Incorporated. All rights reserved.
3 * Permission to use, copy, modify, and distribute this software
4 * is freely granted, provided that this notice is preserved.
10 __ieee754_hypotl (long double x
, long double y
)
13 return __ieee754_hypot (x
, y
);
15 /* Keep it simple for now... */
16 return sqrtl ((x
* x
) + (y
* y
));