diff options
author | hsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2016-05-28 01:46:27 +0000 |
---|---|---|
committer | hsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2016-05-28 01:46:27 +0000 |
commit | 2bd2001d16840ff6e88e785ab01ef7aa40ba800d (patch) | |
tree | 4d5a5b3ae0a378556538adb2367e5d6017fca2a6 /include | |
parent | 288878041f3ef5faed688a90782e5dea62a10cb6 (diff) |
* addr2line.c: drop to support ATARI ST platform. It was discontinued
more than two decades ago. [fix GH-1350] Patch by @cremno
* include/ruby/ruby.h: ditto.
* io.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55189 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'include')
-rw-r--r-- | include/ruby/ruby.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/include/ruby/ruby.h b/include/ruby/ruby.h index ebb2160233..64d33434bb 100644 --- a/include/ruby/ruby.h +++ b/include/ruby/ruby.h @@ -58,11 +58,9 @@ RUBY_SYMBOL_EXPORT_BEGIN /* Make alloca work the best possible way. */ #ifdef __GNUC__ -# ifndef atarist -# ifndef alloca -# define alloca __builtin_alloca -# endif -# endif /* atarist */ +# ifndef alloca +# define alloca __builtin_alloca +# endif #else # ifdef HAVE_ALLOCA_H # include <alloca.h> |