mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
define Fcntl::O_ACCMODE instead of Fcntl::ACCMODE to be consist with
other constants. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4715 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
4f6558a4ec
commit
0a5f6fd37d
2 changed files with 3 additions and 3 deletions
|
@ -1,6 +1,6 @@
|
|||
Tue Oct 7 12:23:47 2003 Tanaka Akira <akr@m17n.org>
|
||||
|
||||
* ext/fcntl/fcntl.c (Init_fcntl): define Fcntl::ACCMODE.
|
||||
* ext/fcntl/fcntl.c (Init_fcntl): define Fcntl::O_ACCMODE.
|
||||
|
||||
* ext/socket/extconf.rb: useless assignment removed.
|
||||
|
||||
|
|
|
@ -105,8 +105,8 @@ Init_fcntl()
|
|||
rb_define_const(mFcntl, "O_WRONLY", INT2NUM(O_WRONLY));
|
||||
#endif
|
||||
#ifdef O_ACCMODE
|
||||
rb_define_const(mFcntl, "ACCMODE", INT2FIX(O_ACCMODE));
|
||||
rb_define_const(mFcntl, "O_ACCMODE", INT2FIX(O_ACCMODE));
|
||||
#else
|
||||
rb_define_const(mFcntl, "ACCMODE", INT2FIX(O_RDONLY | O_WRONLY | O_RDWR));
|
||||
rb_define_const(mFcntl, "O_ACCMODE", INT2FIX(O_RDONLY | O_WRONLY | O_RDWR));
|
||||
#endif
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue