mirror of
https://github.com/fluencelabs/musl
synced 2025-06-28 22:22:01 +00:00
9 lines
107 B
C
9 lines
107 B
C
#include <math.h>
|
|
|
|
// FIXME: incorrect exception behavior
|
|
|
|
long long llrint(double x)
|
|
{
|
|
return rint(x);
|
|
}
|