summaryrefslogtreecommitdiff
path: root/include/ruby/intern.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/ruby/intern.h')
-rw-r--r--include/ruby/intern.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/include/ruby/intern.h b/include/ruby/intern.h
index a04ae309b8..a2d4fcb91a 100644
--- a/include/ruby/intern.h
+++ b/include/ruby/intern.h
@@ -621,6 +621,18 @@ size_t rb_str_capacity(VALUE);
rb_usascii_str_new(str, strlen(str)) : \
rb_usascii_str_new_cstr(str); \
})
+#define rb_external_str_new_cstr(str) __extension__ ( \
+{ \
+ (__builtin_constant_p(str)) ? \
+ rb_external_str_new(str, strlen(str)) : \
+ rb_external_str_new_cstr(str); \
+})
+#define rb_locale_str_new_cstr(str) __extension__ ( \
+{ \
+ (__builtin_constant_p(str)) ? \
+ rb_locale_str_new(str, strlen(str)) : \
+ rb_locale_str_new_cstr(str); \
+})
#define rb_str_buf_new_cstr(str) __extension__ ( \
{ \
(__builtin_constant_p(str)) ? \