1#include "libc.h"
2#include <math.h>
3
4float remainderf(float x, float y) {
5    int q;
6    return remquof(x, y, &q);
7}
8
9weak_alias(remainderf, dremf);
10