summaryrefslogtreecommitdiff
path: root/ext/standard/rand.c
diff options
context:
space:
mode:
Diffstat (limited to 'ext/standard/rand.c')
-rw-r--r--ext/standard/rand.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/ext/standard/rand.c b/ext/standard/rand.c
index 9ba1ca9c85..c3aa9917c6 100644
--- a/ext/standard/rand.c
+++ b/ext/standard/rand.c
@@ -92,7 +92,6 @@
#define loBits(u) ((u) & 0x7FFFFFFFU) /* mask the highest bit of u */
#define mixBits(u, v) (hiBit(u)|loBits(v)) /* move hi bit of u to hi bit of v */
-/* Could be 1<<32 but for some reason it has been used as 1<<31 in the past */
#define MT_RAND_MAX ((unsigned long)((1<<31)-1))
static void seedMT(php_uint32 seed BLS_DC)