aboutsummaryrefslogtreecommitdiff
path: root/std/stdmath.c
diff options
context:
space:
mode:
Diffstat (limited to 'std/stdmath.c')
-rw-r--r--std/stdmath.c2
1 files changed, 1 insertions, 1 deletions
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 <time.h>
-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;
}