status()
public
Return the status value associated
with this system exit.
Show source
/*
* call-seq:
* system_exit.status => fixnum
*
* Return the status value associated with this system exit.
*/
static VALUE
exit_status(exc)
VALUE exc;
{
return rb_attr_get(exc, rb_intern("status"));
}