lang-bootstrap/05/musl-final/src/math/s_llrint.c

9 lines
107 B
C
Raw Normal View History

2025-04-05 10:55:40 +01:00
#include <math.h>
// FIXME: incorrect exception behavior
long long llrint(double x)
{
return rint(x);
}