From 8f0b6b7ebb77b2aa133b7a1bff7e222845fb717c Mon Sep 17 00:00:00 2001 From: aamine Date: Mon, 19 May 2003 07:11:48 +0000 Subject: * class.c: add #include "version.h". * hash.c: ditto. * string.c: ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@3822 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 8 ++++++++ class.c | 1 + hash.c | 1 + string.c | 1 + 4 files changed, 11 insertions(+) diff --git a/ChangeLog b/ChangeLog index 8a718a670..1b659eb6a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +Mon May 19 16:13:57 2003 Minero Aoki + + * class.c: add #include "version.h". + + * hash.c: ditto. + + * string.c: ditto. + Mon May 19 14:42:50 2003 Yukihiro Matsumoto * object.c (rb_mod_cmp): stupid comparison fixed. diff --git a/class.c b/class.c index 298161860..eaa84b912 100644 --- a/class.c +++ b/class.c @@ -14,6 +14,7 @@ #include "rubysig.h" #include "node.h" #include "st.h" +#include "version.h" #include extern st_table *rb_class_tbl; diff --git a/hash.c b/hash.c index a8eee549a..5fadb3ee0 100644 --- a/hash.c +++ b/hash.c @@ -16,6 +16,7 @@ #include "st.h" #include "util.h" #include "rubysig.h" +#include "version.h" #ifdef __APPLE__ #include diff --git a/string.c b/string.c index 06f3292bf..852a7238f 100644 --- a/string.c +++ b/string.c @@ -14,6 +14,7 @@ #include "ruby.h" #include "re.h" +#include "version.h" #define BEG(no) regs->beg[no] #define END(no) regs->end[no] -- cgit