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

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

double cbrt(double x)
{
    return _cbrt(x);
}