diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2024-08-13 01:30:25 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2024-08-13 01:30:25 -0400 |
| commit | d08f795794b33a5d52e39c6b9f0c4e6e88fede3d (patch) | |
| tree | 7267e0828b73685f9af0c3e9cf58212c45af289c /builtins/functions.c | |
| parent | c1c889b024529ac754f83caec4cc15971123d07b (diff) | |
Partially working first draft of bigints
Diffstat (limited to 'builtins/functions.c')
| -rw-r--r-- | builtins/functions.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/builtins/functions.c b/builtins/functions.c index 4e7d25ac..cb75442d 100644 --- a/builtins/functions.c +++ b/builtins/functions.c @@ -17,6 +17,7 @@ #include "files.h" #include "functions.h" #include "halfsiphash.h" +#include "integers.h" #include "pointer.h" #include "string.h" #include "table.h" @@ -35,6 +36,7 @@ public void tomo_init(void) getrandom(&seed, sizeof(seed), 0); srand(seed); srand48(seed); + Int$init_random(seed); } static void print_stack_trace(FILE *out) |
