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

* random.c (rand_init): add check for initstate(3).

* configure.in: ditto.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2366 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
eban 2002-04-11 11:00:02 +00:00
parent 65a269376f
commit 07c69983ac
2 changed files with 5 additions and 1 deletions

View file

@ -2,6 +2,10 @@ Thu Apr 11 19:10:37 2002 WATANABE Hirofumi <eban@ruby-lang.org>
* io.c (remain_size): IO#read returns "" if file.size == 0.
* random.c (rand_init): add check for initstate(3).
* configure.in: ditto.
Thu Apr 11 09:31:19 2002 Takaaki Tateishi <ttate@kt.jaist.ac.jp>
* ext/dl/ptr.c: raise() -> rb_raise(). (Thanks Tetsuya Watanabe)

View file

@ -88,7 +88,7 @@ rand_init(seed)
int old;
static unsigned int saved_seed;
#if defined HAVE_RANDOM && !defined __UCLIBC__
#if defined HAVE_INITSTATE
if (first == 1) {
initstate(1, state, sizeof state);
}