* missing/alloca.c: s/RUBY_LIB/RUBY_LIB_PREFIX/ [ruby-dev:40395]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@26643 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
kazu 2010-02-11 10:20:43 +00:00
parent 485c571bf1
commit e95a439c6d
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
Thu Feb 11 19:19:21 2010 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
* missing/alloca.c: s/RUBY_LIB/RUBY_LIB_PREFIX/ [ruby-dev:40395]
Thu Feb 11 17:52:11 2010 Nobuyoshi Nakada <nobu@ruby-lang.org>
* vm.c (vm_exec): reset thread state before restarting vm loop

View File

@ -54,7 +54,7 @@ typedef char *pointer; /* generic pointer type */
#define NULL 0 /* null pointer constant */
#ifdef RUBY_LIB
#ifdef RUBY_LIB_PREFIX
#define xmalloc ruby_xmalloc
#define xfree ruby_xfree
#endif