~ chicken-core (chicken-5) 8316d45519fc2000236d3b23aefcdf52e31558b4


commit 8316d45519fc2000236d3b23aefcdf52e31558b4
Author:     Kooda <kooda@upyum.com>
AuthorDate: Tue Dec 12 18:35:02 2017 +0100
Commit:     Kooda <kooda@upyum.com>
CommitDate: Tue Dec 12 18:35:02 2017 +0100

    Fix a typo in an ifdef that messed up C_a_i_random_real

diff --git a/runtime.c b/runtime.c
index 877fa822..8cb56a6e 100644
--- a/runtime.c
+++ b/runtime.c
@@ -12705,7 +12705,7 @@ C_s_a_u_i_random_int(C_word **ptr, C_word n, C_word rn)
  * number in [0, 1], 0.00001010011111010100...; then round it.
  * More information on https://mumble.net/~campbell/2014/04/28/uniform-random-float
  */
-#ifdef C_SIXTYFOUR
+#ifdef C_SIXTY_FOUR
 # define random64() random_word()
 #else
 # define random64() ((((C_u64) random_word()) << 32) | ((C_u64) random_word()))
Trap