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