mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* include/ruby/io.h (rb_io_mode_modenum): moved from
include/ruby/intern.h. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19150 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
0153a4ea07
commit
12a55a6c7d
3 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
Fri Sep 5 20:07:37 2008 Tanaka Akira <akr@fsij.org>
|
||||
|
||||
* include/ruby/io.h (rb_io_mode_modenum): moved from
|
||||
include/ruby/intern.h.
|
||||
|
||||
Fri Sep 5 19:59:26 2008 Tanaka Akira <akr@fsij.org>
|
||||
|
||||
* io.c (MODENUM_MAX): removed.
|
||||
|
|
|
@ -391,7 +391,6 @@ VALUE rb_file_open_str(VALUE, const char*);
|
|||
VALUE rb_gets(void);
|
||||
void rb_write_error(const char*);
|
||||
void rb_write_error2(const char*, long);
|
||||
int rb_io_mode_modenum(const char *mode);
|
||||
void rb_close_before_exec(int lowfd, int maxhint, VALUE noclose_fds);
|
||||
int rb_pipe(int *pipes);
|
||||
/* marshal.c */
|
||||
|
|
|
@ -140,6 +140,7 @@ FILE *rb_io_stdio_file(rb_io_t *fptr);
|
|||
FILE *rb_fdopen(int, const char*);
|
||||
int rb_io_mode_flags(const char*);
|
||||
int rb_io_modenum_flags(int);
|
||||
int rb_io_mode_modenum(const char *mode);
|
||||
void rb_io_check_writable(rb_io_t*);
|
||||
void rb_io_check_readable(rb_io_t*);
|
||||
int rb_io_fptr_finalize(rb_io_t*);
|
||||
|
|
Loading…
Reference in a new issue