root/src/system/libroot/posix/musl/math/remainderf.c
#include <math.h>
#include "libm.h"

float remainderf(float x, float y)
{
        int q;
        return remquof(x, y, &q);
}

weak_alias(remainderf, dremf);