DEBSOURCES
Skip Quicknav
sources / ruby1.9.1 / 1.9.2.0-2%2Bdeb6u2 / missing / cbrt.c
12345678910
#include <math.h> double cbrt(double x) { if (x < 0) return -pow(-x, 1/3.0); else return pow(x, 1/3.0); }