blob: 56be72f64fb9da930305a4a5ce6a85f91b9cd6cc [file] [log] [blame]
#include <math.h>
#include "headers/cbrt.h"
double cbrt(double x)
{
return _cbrt(x);
}