powf
float powf(float, float);
power = (ficlFloat)powf(10.0, exponent);
extern float powf(float, float);
using ::powf;
extern float powf(float, float);
inline float pow(float __X, float __Y) { return powf(__X, __Y); }
t = powf(-x, u);
F_RE(ans) = powf(x, u);