8 lines
107 B
C
8 lines
107 B
C
|
#include <math.h>
|
||
|
#include "headers/llrintf.h"
|
||
|
|
||
|
long long int llrintf(float x)
|
||
|
{
|
||
|
return _llrintf(x);
|
||
|
}
|