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

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

long int lround(double x)
{
    return _lround(x);
}