blob: 7679ac9f1b809507df3e1bcad945b528e43f15d1 [file] [log] [blame]
#include "libc.h"
#include <math.h>
float remainderf(float x, float y) {
int q;
return remquof(x, y, &q);
}
weak_alias(remainderf, dremf);