From e1733fc6b3875df434a4c3060bc70286e1f08014 Mon Sep 17 00:00:00 2001 From: nic-gaffney Date: Mon, 26 Jun 2023 22:51:03 -0500 Subject: standard lib --- std/stdmath.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'std/stdmath.c') diff --git a/std/stdmath.c b/std/stdmath.c index dad292f..37c81b0 100644 --- a/std/stdmath.c +++ b/std/stdmath.c @@ -3,7 +3,7 @@ #include -long long randGen(long long min, long long max) { +int randGen(int min, int max) { srandom((unsigned) time(NULL)); return random() % (max - min + 1) + min; } -- cgit v1.2.3