diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-02-20 06:35:37 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-02-20 06:35:37 +0000 |
| commit | 4c13cb2d540c1431c8b6a002d98889e9977cf0bf (patch) | |
| tree | b70430e16ef39c7c35d23ec5e98bfc0300147b7b /intern.h | |
| parent | f700a68ac2de2f4f17c7591b90da60e07ce9b539 (diff) | |
| download | ruby-4c13cb2d540c1431c8b6a002d98889e9977cf0bf.tar.gz ruby-4c13cb2d540c1431c8b6a002d98889e9977cf0bf.tar.xz ruby-4c13cb2d540c1431c8b6a002d98889e9977cf0bf.zip | |
* intern.h: prototypes; rb_io_addstr(), rb_io_printf(),
rb_io_print(), rb_io_puts()
* io.c (rb_io_addstr): make extern.
* io.c (rb_io_printf): ditto.
* io.c (rb_io_print): ditto.
* io.c (rb_io_puts): ditto.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@2104 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'intern.h')
| -rw-r--r-- | intern.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -232,6 +232,10 @@ VALUE rb_io_ungetc _((VALUE, VALUE)); VALUE rb_io_close _((VALUE)); VALUE rb_io_eof _((VALUE)); VALUE rb_io_binmode _((VALUE)); +VALUE rb_io_addstr _((VALUE, VALUE)); +VALUE rb_io_printf _((int, VALUE*, VALUE)); +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)); /* marshal.c */ |
