Initial import
This commit is contained in:
8
libc/math/lroundf.c
Normal file
8
libc/math/lroundf.c
Normal file
@@ -0,0 +1,8 @@
|
||||
#include "libc/math/math.h"
|
||||
|
||||
long lroundf(float x) {
|
||||
long y;
|
||||
x = roundf(x);
|
||||
y = x;
|
||||
return y;
|
||||
}
|
||||
Reference in New Issue
Block a user