summaryrefslogtreecommitdiffhomepage
path: root/mrbgems/mruby-random/src
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2014-03-01 10:52:46 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2014-03-01 10:52:46 +0900
commit5f937591580ef810fedcdfb40e94ceb9f8ef5178 (patch)
tree0c7e2ee1e6d451df377fb3a36052bb728dc6824b /mrbgems/mruby-random/src
parent78f2902c0680f53dc2cf4b7febce1d3613db67bf (diff)
parent67de10bfcb9d9ff21e1aa678aff8afa10446b7c4 (diff)
downloadmruby-5f937591580ef810fedcdfb40e94ceb9f8ef5178.tar.gz
mruby-5f937591580ef810fedcdfb40e94ceb9f8ef5178.zip
Merge branch 'issues/comment_style' of https://github.com/cubicdaiya/mruby into cubicdaiya-issues/comment_style
Diffstat (limited to 'mrbgems/mruby-random/src')
-rw-r--r--mrbgems/mruby-random/src/mt19937ar.c2
-rw-r--r--mrbgems/mruby-random/src/random.h6
2 files changed, 4 insertions, 4 deletions
diff --git a/mrbgems/mruby-random/src/mt19937ar.c b/mrbgems/mruby-random/src/mt19937ar.c
index b237af56d..3de935232 100644
--- a/mrbgems/mruby-random/src/mt19937ar.c
+++ b/mrbgems/mruby-random/src/mt19937ar.c
@@ -8,7 +8,7 @@
#include "mt19937ar.h"
/* Period parameters */
-//#define N 624
+/* #define N 624 */
#define M 397
#define MATRIX_A 0x9908b0dfUL /* constant vector a */
#define UPPER_MASK 0x80000000UL /* most significant w-r bits */
diff --git a/mrbgems/mruby-random/src/random.h b/mrbgems/mruby-random/src/random.h
index 3dc5d4e77..af82d66ac 100644
--- a/mrbgems/mruby-random/src/random.h
+++ b/mrbgems/mruby-random/src/random.h
@@ -1,7 +1,7 @@
/*
-// random.h - Random module
-//
-// See Copyright Notice in mruby.h
+** random.h - Random module
+**
+** See Copyright Notice in mruby.h
*/
#ifndef RANDOM_H