diff --git a/ChangeLog b/ChangeLog index 7a6491ee1f..e25cec7189 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 8132f8c5ca..666548dde3 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 cc9af8a4f0..2743ad0e24 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 eebc61cd10..e960f2078e 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]