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

* process.c: silence VC++ warnings.

* sprintf.c: ditto.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1391 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
knu 2001-05-11 14:55:58 +00:00
parent eeb7234919
commit 153677ed3d
3 changed files with 9 additions and 1 deletions

View file

@ -1,3 +1,9 @@
Fri May 11 23:51:54 2001 Usaku Nakamura <usa@osb.att.ne.jp>
* process.c: silence VC++ warnings.
* sprintf.c: ditto.
Fri May 11 02:00:44 2001 Ryo HAYASAKA <ryoh@jaist.ac.jp>
* bignum.c (bigdivrem): access boundary bug.

View file

@ -234,7 +234,9 @@ proc_waitpid2(argc, argv)
return rb_assoc_new(pid, rb_last_status);
}
#ifndef HAVE_STRING_H
char *strtok();
#endif
#ifdef HAVE_SETITIMER
#define before_exec() rb_thread_stop_timer()

View file

@ -18,7 +18,7 @@
#define BIT_DIGITS(N) (((N)*146)/485 + 1) /* log2(10) =~ 146/485 */
#ifndef atof
#if !defined(atof) && !defined(HAVE_STDLIB_H)
double strtod();
#endif