1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* class.c, hash.c, string.c: remove #include "version.h".

* Makefile.in: remove needless version.h dependency.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4895 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
eban 2003-11-04 14:40:30 +00:00
parent 3d00f9fc96
commit da191c4547
4 changed files with 6 additions and 3 deletions

View file

@ -1,3 +1,9 @@
Tue Nov 4 23:38:43 2003 WATANABE Hirofumi <eban@ruby-lang.org>
* 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 <matz@ruby-lang.org>
* io.c (read_all): fptr->f may be NULL, if IO is closed in the

View file

@ -14,7 +14,6 @@
#include "rubysig.h"
#include "node.h"
#include "st.h"
#include "version.h"
#include <ctype.h>
extern st_table *rb_class_tbl;

1
hash.c
View file

@ -16,7 +16,6 @@
#include "st.h"
#include "util.h"
#include "rubysig.h"
#include "version.h"
#ifdef __APPLE__
#include <crt_externs.h>

View file

@ -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]