2012-03-27 01:51:53 +02:00

8 lines
105 B
C

#include <math.h>
#include "headers/fmodf.h"
float fmodf(float x, float y)
{
return _fmodf(x, y);
}