#include #include #include CAMLprim value erf_float_bytecode(value x) { return copy_double(erf(Double_val(x))); } CAMLprim double erf_float(double x) { return erf(x); }