Files
musl/src/math/s_llrint.c

9 lines
107 B
C
Raw Normal View History

2011-02-12 00:22:29 -05:00
#include <math.h>
// FIXME: incorrect exception behavior
long long llrint(double x)
{
return rint(x);
}