* ext/curses/curses.c: should include <ruby/io.h>.

* ext/io/wait/wait.c: ditto.

* ext/openssl/ossl.h: ditto.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19567 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
matz 2008-09-26 03:05:47 +00:00
parent fac096d512
commit edebd815b0
4 changed files with 11 additions and 3 deletions

View File

@ -1,3 +1,11 @@
Fri Sep 26 12:04:07 2008 Yukihiro Matsumoto <matz@ruby-lang.org>
* ext/curses/curses.c: should include <ruby/io.h>.
* ext/io/wait/wait.c: ditto.
* ext/openssl/ossl.h: ditto.
Fri Sep 26 11:34:08 2008 NAKAMURA Usaku <usa@ruby-lang.org> Fri Sep 26 11:34:08 2008 NAKAMURA Usaku <usa@ruby-lang.org>
* variable.c (rb_define_hooked_variable): cast to get rid of compiler * variable.c (rb_define_hooked_variable): cast to get rid of compiler

View File

@ -14,7 +14,7 @@
*/ */
#include "ruby.h" #include "ruby.h"
#include "rubyio.h" #include "ruby/io.h"
#if defined(HAVE_NCURSES_H) #if defined(HAVE_NCURSES_H)
# include <ncurses.h> # include <ncurses.h>

View File

@ -11,7 +11,7 @@
**********************************************************************/ **********************************************************************/
#include "ruby.h" #include "ruby.h"
#include "rubyio.h" #include "ruby/io.h"
#include <sys/types.h> #include <sys/types.h>
#if defined(FIONREAD_HEADER) #if defined(FIONREAD_HEADER)

View File

@ -29,7 +29,7 @@ extern "C" {
# undef RFILE # undef RFILE
#endif #endif
#include <ruby.h> #include <ruby.h>
#include <rubyio.h> #include <ruby/io.h>
/* /*
* Check the OpenSSL version * Check the OpenSSL version