blob: 2b1e00d06da73c9018100177cb8f5dc9b80ffda8 [file] [log] [blame]
#include <math.h>
// FIXME: incorrect exception behavior
long long llrint(double x)
{
return rint(x);
}