9a9b91c940
It's finally done.. Signed-off-by: kaguya <vpshinomiya@protonmail.com>
9 lines
122 B
C
9 lines
122 B
C
#include <math.h>
|
|
|
|
/* uses LLONG_MAX > 2^24, see comments in lrint.c */
|
|
|
|
long long llrintf(float x)
|
|
{
|
|
return rintf(x);
|
|
}
|