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

* rubyio.h (HAVE_RB_IO_T): macro to tell if rb_io_t is defined.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11875 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2007-02-25 01:16:58 +00:00
parent f42150744c
commit 96110732f1
2 changed files with 6 additions and 0 deletions

View file

@ -1,3 +1,7 @@
Sat Feb 25 10:16:50 2007 Nobuyoshi Nakada <nobu@ruby-lang.org>
* rubyio.h (HAVE_RB_IO_T): macro to tell if rb_io_t is defined.
Sat Feb 24 19:39:16 2007 Minero Aoki <aamine@loveruby.net>
* common.mk: new target "btest", to run bootstraptests.

View file

@ -39,6 +39,8 @@ typedef struct rb_io_t {
int rbuf_capa;
} rb_io_t;
#define HAVE_RB_IO_T 1
#define FMODE_READABLE 1
#define FMODE_WRITABLE 2
#define FMODE_READWRITE 3