Initial import
This commit is contained in:
8
libc/math/llrintf.c
Normal file
8
libc/math/llrintf.c
Normal file
@@ -0,0 +1,8 @@
|
||||
#include "libc/math/math.h"
|
||||
|
||||
/* uses LLONG_MAX > 2^24, see comments in lrint.c */
|
||||
|
||||
long long llrintf(float x)
|
||||
{
|
||||
return rintf(x);
|
||||
}
|
||||
Reference in New Issue
Block a user