lang-bootstrap/05/musl-final/src/math/s_llrint.c
2025-04-05 10:55:40 +01:00

8 lines
107 B
C

#include <math.h>
// FIXME: incorrect exception behavior
long long llrint(double x)
{
return rint(x);
}