Sign in
third-party-mirror
/
mingw-w64
/
518dd33c326f65684e8e938262b2a9ca94804cfb
/
.
/
mingw-w64-crt
/
math
/
roundl.c
blob: 18ea455468b84f0d6a4258ff50d05cd6a0c1b60a [
file
] [
log
] [
blame
]
#include
<math.h>
long
double
roundl
(
long
double
x
)
{
/* Add +/- 0.5 then then round towards zero. */
return
truncl
(
x
+
(
x
>=
0.0L
?
0.5L
:
-
0.5L
));
}