1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* error.c (errno_missing): add rdoc.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@8155 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2005-03-15 14:53:17 +00:00
parent 52fcd892e7
commit f109834b8c

View file

@ -992,7 +992,6 @@ syserr_errno(self)
* if the error numbers _self_ and _other_ are the same.
*/
static VALUE
syserr_eqq(self, exc)
VALUE self, exc;
@ -1017,6 +1016,12 @@ syserr_eqq(self, exc)
return Qfalse;
}
/*
* call-seq:
* Errno.const_missing => SystemCallError
*
* Returns default SystemCallError class.
*/
static VALUE
errno_missing(self, id)
VALUE self, id;