/*
* call-seq:
* Math.asin(x) => float
*
* Computes the arc sine of <i>x</i>. Returns -{PI/2} .. {PI/2}.
*/
static VALUE
math_asin(VALUE obj, VALUE x)
{
double d;
Need_Float(x);
errno = 0;
d = asin(RFLOAT_VALUE(x));
domain_check(d, "asin");
return DOUBLE2NUM(d);
}