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

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

float cbrtf(float x)
{
    return _cbrtf(x);
}