mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Revert "marshal.c: new functions for extensions"
This reverts a commit miss, 24a96a0228
.
This commit is contained in:
parent
9e472e18d2
commit
c8b001858e
2 changed files with 2 additions and 2 deletions
|
@ -598,8 +598,6 @@ void rb_fd_fix_cloexec(int fd);
|
|||
/* marshal.c */
|
||||
VALUE rb_marshal_dump(VALUE, VALUE);
|
||||
VALUE rb_marshal_load(VALUE);
|
||||
VALUE rb_marshal_dump_limited(VALUE obj, VALUE port, int level);
|
||||
VALUE rb_marshal_load_with_proc(VALUE port, VALUE proc);
|
||||
void rb_marshal_define_compat(VALUE newclass, VALUE oldclass, VALUE (*dumper)(VALUE), VALUE (*loader)(VALUE, VALUE));
|
||||
/* numeric.c */
|
||||
NORETURN(void rb_num_zerodiv(void));
|
||||
|
|
|
@ -106,6 +106,8 @@ typedef struct {
|
|||
|
||||
static st_table *compat_allocator_tbl;
|
||||
static VALUE compat_allocator_tbl_wrapper;
|
||||
static VALUE rb_marshal_dump_limited(VALUE obj, VALUE port, int limit);
|
||||
static VALUE rb_marshal_load_with_proc(VALUE port, VALUE proc);
|
||||
|
||||
static int
|
||||
mark_marshal_compat_i(st_data_t key, st_data_t value)
|
||||
|
|
Loading…
Add table
Reference in a new issue