10 lines
135 B
C
10 lines
135 B
C
|
#include "libc/math/libm.h"
|
||
|
|
||
|
float remainderf(float x, float y)
|
||
|
{
|
||
|
int q;
|
||
|
return remquof(x, y, &q);
|
||
|
}
|
||
|
|
||
|
weak_alias(remainderf, dremf);
|