Welcome to mirror list, hosted at ThFree Co, Russian Federation.

llrintf.c « spu « machine « libm « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a27c773f8dfe26d734b599ea734d91c8e4dc44ea (plain)
1
2
3
4
5
6
7
#include <math.h>
#include "headers/llrintf.h"

long long int llrintf(float x)
{
    return _llrintf(x);
}