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);
|
||
|
}
|