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

double remainder(double x, double y)
{
        int q;
        return remquo(x, y, &q);
}

weak_alias(remainder, drem);