summaryrefslogtreecommitdiff
path: root/src/stdlib/RAND_MAX.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/stdlib/RAND_MAX.c')
-rw-r--r--src/stdlib/RAND_MAX.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/stdlib/RAND_MAX.c b/src/stdlib/RAND_MAX.c
new file mode 100644
index 00000000..dbbdbde0
--- /dev/null
+++ b/src/stdlib/RAND_MAX.c
@@ -0,0 +1,14 @@
+#include <stdlib.h>
+
+/** random number range **/
+
+#define RAND_MAX (32767)
+
+/***
+is the maximum value returned by FUNCTION(rand).
+***/
+
+/*
+VALUE_MIN(32767)
+STDC(1)
+*/