/* * Returns the model type, e.g. "PowerBook5,1" */ static VALUE uname_model() { char model[BUFSIZ]; get_model(model, sizeof(model)); return rb_str_new2(model); }