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

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

float rintf(float x)
{
  return _rintf(x);
}