mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* class.c: add #include "version.h".
* hash.c: ditto. * string.c: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3822 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
db0b2bb241
commit
e08bc0a22a
4 changed files with 11 additions and 0 deletions
|
@ -1,3 +1,11 @@
|
|||
Mon May 19 16:13:57 2003 Minero Aoki <aamine@loveruby.net>
|
||||
|
||||
* class.c: add #include "version.h".
|
||||
|
||||
* hash.c: ditto.
|
||||
|
||||
* string.c: ditto.
|
||||
|
||||
Mon May 19 14:42:50 2003 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||
|
||||
* object.c (rb_mod_cmp): stupid comparison fixed.
|
||||
|
|
1
class.c
1
class.c
|
@ -14,6 +14,7 @@
|
|||
#include "rubysig.h"
|
||||
#include "node.h"
|
||||
#include "st.h"
|
||||
#include "version.h"
|
||||
#include <ctype.h>
|
||||
|
||||
extern st_table *rb_class_tbl;
|
||||
|
|
1
hash.c
1
hash.c
|
@ -16,6 +16,7 @@
|
|||
#include "st.h"
|
||||
#include "util.h"
|
||||
#include "rubysig.h"
|
||||
#include "version.h"
|
||||
|
||||
#ifdef __APPLE__
|
||||
#include <crt_externs.h>
|
||||
|
|
1
string.c
1
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]
|
||||
|
|
Loading…
Reference in a new issue