Retro68/gcc/newlib/libm/machine/spu/llroundf.c
2012-03-27 01:51:53 +02:00

8 lines
110 B
C

#include <math.h>
#include "headers/llroundf.h"
long long int llroundf(float x)
{
return _llroundf(x);
}