8 lines
107 B
C
Raw Normal View History

#include <math.h>
#include "headers/llrintf.h"
long long int llrintf(float x)
{
return _llrintf(x);
}