diff options
author | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-12-23 05:19:27 +0000 |
---|---|---|
committer | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-12-23 05:19:27 +0000 |
commit | 5a76ac7b1494f70ed611b804040bf316cb7a7377 (patch) | |
tree | a71d6f305d7dede3c26de8c0598878240a0434bd | |
parent | 8a82b4802d7c2263e585a795c28cc3a856ff5f02 (diff) | |
download | ruby-5a76ac7b1494f70ed611b804040bf316cb7a7377.tar.gz ruby-5a76ac7b1494f70ed611b804040bf316cb7a7377.tar.xz ruby-5a76ac7b1494f70ed611b804040bf316cb7a7377.zip |
* include/ruby/st.h: need to include defines.h because LONG_LONG is
defined there.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@20933 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | include/ruby/st.h | 1 |
2 files changed, 6 insertions, 0 deletions
@@ -1,3 +1,8 @@ +Tue Dec 23 14:18:14 2008 NAKAMURA Usaku <usa@ruby-lang.org> + + * include/ruby/st.h: need to include defines.h because LONG_LONG is + defined there. + Tue Dec 23 13:52:05 2008 Eric Hodel <drbrain@segment7.net> * lib/rdoc/parser/c.rb: Don't coalesce adjacent comment blocks. diff --git a/include/ruby/st.h b/include/ruby/st.h index 31bac7b1a..09a7c5822 100644 --- a/include/ruby/st.h +++ b/include/ruby/st.h @@ -14,6 +14,7 @@ extern "C" { #ifndef RUBY_LIB #include "ruby/config.h" +#include "ruby/defines.h" #ifdef RUBY_EXTCONF_H #include RUBY_EXTCONF_H #endif |