* include/ruby/intern.h (rb_make_backtrace, rb_make_exception):

used in ripper.

* node.h (rb_parser_{malloc,realloc,calloc,free}): ditto.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@28975 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2010-08-14 04:20:59 +00:00
parent 87da8f0a29
commit 3bf1afbdd8
4 changed files with 15 additions and 10 deletions

6
node.h
View file

@ -480,6 +480,12 @@ VALUE rb_gvar_set(struct rb_global_entry *, VALUE);
VALUE rb_gvar_defined(struct rb_global_entry *);
const struct kwtable *rb_reserved_word(const char *, unsigned int);
struct parser_params;
void *rb_parser_malloc(struct parser_params *, size_t);
void *rb_parser_realloc(struct parser_params *, void *, size_t);
void *rb_parser_calloc(struct parser_params *, size_t, size_t);
void rb_parser_free(struct parser_params *, void *);
#if defined __GNUC__ && __GNUC__ >= 4
#pragma GCC visibility pop
#endif