зеркало из https://github.com/github/ruby.git
* random.c: change include order; ruby.h should be at first.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27082 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
cb905affbd
Коммит
46a4000a68
|
@ -1,3 +1,7 @@
|
||||||
|
Mon Mar 29 09:16:45 2010 NARUSE, Yui <naruse@ruby-lang.org>
|
||||||
|
|
||||||
|
* random.c: change include order; ruby.h should be at first.
|
||||||
|
|
||||||
Mon Mar 29 06:47:25 2010 Aaron Patterson <aaron@tenderlovemaking.com>
|
Mon Mar 29 06:47:25 2010 Aaron Patterson <aaron@tenderlovemaking.com>
|
||||||
|
|
||||||
* ext/psych/*: importing Psych to trunk
|
* ext/psych/*: importing Psych to trunk
|
||||||
|
|
45
random.c
45
random.c
|
@ -59,7 +59,30 @@ The original copyright notice follows.
|
||||||
email: matumoto@math.keio.ac.jp
|
email: matumoto@math.keio.ac.jp
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include "ruby/ruby.h"
|
||||||
|
|
||||||
#include <limits.h>
|
#include <limits.h>
|
||||||
|
#ifdef HAVE_UNISTD_H
|
||||||
|
#include <unistd.h>
|
||||||
|
#endif
|
||||||
|
#include <time.h>
|
||||||
|
#include <sys/types.h>
|
||||||
|
#include <sys/stat.h>
|
||||||
|
#ifdef HAVE_FCNTL_H
|
||||||
|
#include <fcntl.h>
|
||||||
|
#endif
|
||||||
|
#include <math.h>
|
||||||
|
#include <errno.h>
|
||||||
|
|
||||||
|
#ifdef _WIN32
|
||||||
|
# if !defined(_WIN32_WINNT) || _WIN32_WINNT < 0x0400
|
||||||
|
# undef _WIN32_WINNT
|
||||||
|
# define _WIN32_WINNT 0x400
|
||||||
|
# undef __WINCRYPT_H__
|
||||||
|
# endif
|
||||||
|
#include <wincrypt.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
typedef int int_must_be_32bit_at_least[sizeof(int) * CHAR_BIT < 32 ? -1 : 1];
|
typedef int int_must_be_32bit_at_least[sizeof(int) * CHAR_BIT < 32 ? -1 : 1];
|
||||||
|
|
||||||
/* Period parameters */
|
/* Period parameters */
|
||||||
|
@ -194,20 +217,6 @@ genrand_real2(struct MT *mt)
|
||||||
|
|
||||||
/* These real versions are due to Isaku Wada, 2002/01/09 added */
|
/* These real versions are due to Isaku Wada, 2002/01/09 added */
|
||||||
|
|
||||||
#include "ruby/ruby.h"
|
|
||||||
|
|
||||||
#ifdef HAVE_UNISTD_H
|
|
||||||
#include <unistd.h>
|
|
||||||
#endif
|
|
||||||
#include <time.h>
|
|
||||||
#include <sys/types.h>
|
|
||||||
#include <sys/stat.h>
|
|
||||||
#ifdef HAVE_FCNTL_H
|
|
||||||
#include <fcntl.h>
|
|
||||||
#endif
|
|
||||||
#include <math.h>
|
|
||||||
#include <errno.h>
|
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
VALUE seed;
|
VALUE seed;
|
||||||
struct MT mt;
|
struct MT mt;
|
||||||
|
@ -449,14 +458,6 @@ random_init(int argc, VALUE *argv, VALUE obj)
|
||||||
#else
|
#else
|
||||||
# define USE_DEV_URANDOM 0
|
# define USE_DEV_URANDOM 0
|
||||||
#endif
|
#endif
|
||||||
#ifdef _WIN32
|
|
||||||
# if !defined(_WIN32_WINNT) || _WIN32_WINNT < 0x0400
|
|
||||||
# undef _WIN32_WINNT
|
|
||||||
# define _WIN32_WINNT 0x400
|
|
||||||
# undef __WINCRYPT_H__
|
|
||||||
# endif
|
|
||||||
#include <wincrypt.h>
|
|
||||||
#endif
|
|
||||||
|
|
||||||
static void
|
static void
|
||||||
fill_random_seed(unsigned int seed[DEFAULT_SEED_CNT])
|
fill_random_seed(unsigned int seed[DEFAULT_SEED_CNT])
|
||||||
|
|
Загрузка…
Ссылка в новой задаче