#include <math.h>
#include "headers/fmodf.h"

float fmodf(float x, float y)
{
    return _fmodf(x, y);
}