summaryrefslogtreecommitdiffstats
path: root/intern.h
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-07-31 08:42:44 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-07-31 08:42:44 +0000
commit7f190bdd307c5e54fd2c6bd84a97514b3139c06f (patch)
tree2c833c1b565733ed271fd9071f68150d40142923 /intern.h
parent384cf926298283edaeb7554ea5a71964fb30a484 (diff)
downloadruby-7f190bdd307c5e54fd2c6bd84a97514b3139c06f.tar.gz
ruby-7f190bdd307c5e54fd2c6bd84a97514b3139c06f.tar.xz
ruby-7f190bdd307c5e54fd2c6bd84a97514b3139c06f.zip
* numeric.c (rb_num_coerce_relop): export function.
* marshal.c (w_object): check has been dropped. "_dump must return string." [ruby-dev:21024] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4243 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'intern.h')
-rw-r--r--intern.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/intern.h b/intern.h
index bd8c9725b..e94077e70 100644
--- a/intern.h
+++ b/intern.h
@@ -268,8 +268,8 @@ VALUE rb_io_print _((int, VALUE*, VALUE));
VALUE rb_io_puts _((int, VALUE*, VALUE));
VALUE rb_file_open _((const char*, const char*));
VALUE rb_gets _((void));
-void rb_write_deferr _((const char*));
-void rb_write_deferr2 _((const char*, long));
+void rb_write_error _((const char*));
+void rb_write_error2 _((const char*, long));
/* marshal.c */
VALUE rb_marshal_dump _((VALUE, VALUE));
VALUE rb_marshal_load _((VALUE));
@@ -277,6 +277,7 @@ VALUE rb_marshal_load _((VALUE));
void rb_num_zerodiv _((void));
VALUE rb_num_coerce_bin _((VALUE, VALUE));
VALUE rb_num_coerce_cmp _((VALUE, VALUE));
+VALUE rb_num_coerce_relop _((VALUE, VALUE));
VALUE rb_float_new _((double));
VALUE rb_num2fix _((VALUE));
VALUE rb_fix2str _((VALUE, int));