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

internal.h: export rb_gc_for_fd

* internal.h (rb_gc_for_fd): move to export, as referred by
  ext/socket.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52730 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2015-11-24 00:16:37 +00:00
parent e99cc601e0
commit f7847ecb72
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
Tue Nov 24 09:16:35 2015 Nobuyoshi Nakada <nobu@ruby-lang.org>
* internal.h (rb_gc_for_fd): move to export, as referred by
ext/socket.
Tue Nov 24 09:04:29 2015 David Rodriguez <deivid.rodriguez@gmail.com>
* file.c: [DOC] add a missing period to File docs, to terminate

View file

@ -851,7 +851,6 @@ void rb_stdio_set_default_encoding(void);
void rb_write_error_str(VALUE mesg);
VALUE rb_io_flush_raw(VALUE, int);
size_t rb_io_memsize(const rb_io_t *);
int rb_gc_for_fd(int err);
/* load.c */
VALUE rb_get_load_path(void);
@ -1292,6 +1291,7 @@ VALUE rb_ident_hash_new(void);
/* io.c (export) */
void rb_maygvl_fd_fix_cloexec(int fd);
int rb_gc_for_fd(int err);
/* numeric.c (export) */
VALUE rb_int_positive_pow(long x, unsigned long y);