/* * call-seq: * Uptime.minutes * * Returns the total number of minutes the system has been up. */ static VALUE uptime_minutes() { return UINT2NUM(get_uptime_secs() / 60); }