From 3900f74c3d81783fa13b2935dc72dc4774e34c2d Mon Sep 17 00:00:00 2001 From: eban Date: Tue, 4 Nov 2003 14:40:30 +0000 Subject: * class.c, hash.c, string.c: remove #include "version.h". * Makefile.in: remove needless version.h dependency. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4895 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 6 ++++++ class.c | 1 - hash.c | 1 - string.c | 1 - 4 files changed, 6 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 7a6491ee1..e25cec718 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Tue Nov 4 23:38:43 2003 WATANABE Hirofumi + + * class.c, hash.c, string.c: remove #include "version.h". + + * Makefile.in: remove needless version.h dependency. + Tue Nov 4 06:54:52 2003 Yukihiro Matsumoto * io.c (read_all): fptr->f may be NULL, if IO is closed in the diff --git a/class.c b/class.c index 8132f8c5c..666548dde 100644 --- a/class.c +++ b/class.c @@ -14,7 +14,6 @@ #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 cc9af8a4f..2743ad0e2 100644 --- a/hash.c +++ b/hash.c @@ -16,7 +16,6 @@ #include "st.h" #include "util.h" #include "rubysig.h" -#include "version.h" #ifdef __APPLE__ #include diff --git a/string.c b/string.c index eebc61cd1..e960f2078 100644 --- a/string.c +++ b/string.c @@ -14,7 +14,6 @@ #include "ruby.h" #include "re.h" -#include "version.h" #define BEG(no) regs->beg[no] #define END(no) regs->end[no] -- cgit