8 lines
105 B
C
8 lines
105 B
C
|
#include <math.h>
|
||
|
#include "headers/llrint.h"
|
||
|
|
||
|
long long int llrint(double x)
|
||
|
{
|
||
|
return _llrint(x);
|
||
|
}
|