mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
encoding.h: fix conflicts
* include/ruby/encoding.h (rb_{ascii8bit,utf8,usascii}_encindex): get rid of conflict with macros defined in internal.h. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@42734 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
0328cdf92c
commit
6908e4960d
2 changed files with 11 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
Sat Aug 31 00:25:15 2013 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* include/ruby/encoding.h (rb_{ascii8bit,utf8,usascii}_encindex): get
|
||||
rid of conflict with macros defined in internal.h.
|
||||
|
||||
Fri Aug 30 22:37:57 2013 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* thread_pthread.c (native_thread_init_stack): wait the creator thread
|
||||
|
|
|
@ -197,9 +197,15 @@ rb_encoding *rb_locale_encoding(void);
|
|||
rb_encoding *rb_filesystem_encoding(void);
|
||||
rb_encoding *rb_default_external_encoding(void);
|
||||
rb_encoding *rb_default_internal_encoding(void);
|
||||
#ifndef rb_ascii8bit_encindex
|
||||
int rb_ascii8bit_encindex(void);
|
||||
#endif
|
||||
#ifndef rb_utf8_encindex
|
||||
int rb_utf8_encindex(void);
|
||||
#endif
|
||||
#ifndef rb_usascii_encindex
|
||||
int rb_usascii_encindex(void);
|
||||
#endif
|
||||
int rb_locale_encindex(void);
|
||||
int rb_filesystem_encindex(void);
|
||||
VALUE rb_enc_default_external(void);
|
||||
|
|
Loading…
Reference in a new issue