X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fmath%2Fllroundf.c;h=19eb77ee3d568c9d95826a9a29ba5e90e24af819;hb=697acde67e0da4d73b46445ed536fe9923d515c7;hp=594ce967f808ddc341bf8e86d763556122a07f59;hpb=b69f695acedd4ce2798ef9ea28d834ceccc789bd;p=musl diff --git a/src/math/llroundf.c b/src/math/llroundf.c index 594ce967..19eb77ee 100644 --- a/src/math/llroundf.c +++ b/src/math/llroundf.c @@ -1,8 +1,6 @@ -#define type float -#define roundit roundf -#define dtype long long -#define DTYPE_MIN LLONG_MIN -#define DTYPE_MAX LLONG_MAX -#define fn llroundf +#include -#include "lround.c" +long long llroundf(float x) +{ + return roundf(x); +}