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

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

double trunc(double x)
{
    return _trunc(x);
}