Initial import
This commit is contained in:
9
libc/math/remainderf.c
Normal file
9
libc/math/remainderf.c
Normal file
@@ -0,0 +1,9 @@
|
||||
#include "libc/math/libm.h"
|
||||
|
||||
float remainderf(float x, float y)
|
||||
{
|
||||
int q;
|
||||
return remquof(x, y, &q);
|
||||
}
|
||||
|
||||
weak_alias(remainderf, dremf);
|
||||
Reference in New Issue
Block a user