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

* {win32,bcc32}/Makefile.sub: remove `=' from --make-flags options.

nmake quotes args if included `=' in args.
* instruby.rb: use getopts.rb.
* ext/dbm/extconf.rb: substitute ' with ".
* ext/gdbm/gdbm.c: add prototypes to avoid VC++ warnings.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3229 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
eban 2002-12-27 16:13:56 +00:00
parent 212d3ebfff
commit c40c0f726b
4 changed files with 14 additions and 10 deletions

View file

@ -65,6 +65,8 @@ fgdbm_close(obj)
return Qnil;
}
static VALUE fgdbm_s_alloc _((VALUE));
static VALUE
fgdbm_s_alloc(klass)
VALUE klass;
@ -511,6 +513,8 @@ fgdbm_invert(obj)
return hash;
}
static VALUE each_pair _((VALUE));
static VALUE
each_pair(obj)
VALUE obj;