aboutsummaryrefslogtreecommitdiff
path: root/std/stdmath.c
diff options
context:
space:
mode:
authornic-gaffney <gaffney_nic@protonmail.com>2023-06-27 03:19:39 -0500
committernic-gaffney <gaffney_nic@protonmail.com>2023-06-27 03:19:39 -0500
commit5d958f8af1646f9cb4763bb2f020bb2e6de8a3c0 (patch)
tree32321069ed7dd49c567b53a13dfbb07e1e95f88b /std/stdmath.c
parent9f7f0f925f9304ac46499caf0fef245083a78828 (diff)
downloadsloth-5d958f8af1646f9cb4763bb2f020bb2e6de8a3c0.tar.gz
help
Diffstat (limited to 'std/stdmath.c')
-rw-r--r--std/stdmath.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/std/stdmath.c b/std/stdmath.c
index f7f79c6..a650129 100644
--- a/std/stdmath.c
+++ b/std/stdmath.c
@@ -2,12 +2,12 @@
#include <stdlib.h>
#include <time.h>
-bool random_setup = false;
+int random_setup = 0;
int randGen(int min, int max) {
- if random_setup == false {
+ if (random_setup == 0) {
srandom(time(NULL));
- random_setup = true;
+ random_setup = 1;
}
return random() % (max - min + 1) + min;
}