summaryrefslogtreecommitdiff
path: root/object.c
diff options
context:
space:
mode:
Diffstat (limited to 'object.c')
-rw-r--r--object.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/object.c b/object.c
index c33123b2fc..4811c9a0ab 100644
--- a/object.c
+++ b/object.c
@@ -89,7 +89,7 @@ rb_eql(VALUE obj1, VALUE obj2)
* 1.eql? 1.0 #=> false
*/
-static VALUE
+VALUE
rb_obj_equal(VALUE obj1, VALUE obj2)
{
if (obj1 == obj2) return Qtrue;
@@ -103,7 +103,7 @@ rb_obj_equal(VALUE obj1, VALUE obj2)
* Boolean negate.
*/
-static VALUE
+VALUE
rb_obj_not(VALUE obj)
{
return RTEST(obj) ? Qfalse : Qtrue;
@@ -116,7 +116,7 @@ rb_obj_not(VALUE obj)
* Returns true if two objects are not-equal, otherwise false.
*/
-static VALUE
+VALUE
rb_obj_not_equal(VALUE obj1, VALUE obj2)
{
VALUE result = rb_funcall(obj1, id_eq, 1, obj2);