fcntl(...)
public
Raises <a
href="/ruby/NotImplementedError">NotImplementedError</a>.
Show source
/*
* Raises NotImplementedError.
*/
static VALUE
strio_unimpl(argc, argv, self)
int argc;
VALUE *argv;
VALUE self;
{
StringIO(self);
rb_notimplement();
return Qnil; /* not reached */
}