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

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

long int lrint(double x)
{
    return _lrint(x);
}