BizHawk/waterbox/libc/functions/math/llroundf.c

7 lines
70 B
C
Raw Normal View History

#include <math.h>
long long llroundf(float x)
{
return roundf(x);
}