Skip to content
Snippets Groups Projects
Commit a24f537a authored by Paul Sajna's avatar Paul Sajna
Browse files

test

parent 4db812d3
No related branches found
No related tags found
1 merge request!102implement rand and srand using the rand crate
......@@ -28,6 +28,7 @@
/stdlib/bsearch
/stdlib/strtol
/stdlib/a64l
/stdlib/rand
/string/strncmp
/string/strcspn
/string/strchr
......
......@@ -23,6 +23,7 @@ EXPECT_BINS=\
stdlib/bsearch \
stdlib/strtol \
stdlib/a64l \
stdlib/rand \
string/strncmp \
string/strcspn \
string/strchr \
......
#include <stdlib.h>
#include <stdio.h>
int main(int argc, char** argv) {
printf("%d\n", rand());
srand(259);
printf("%d\n", rand());
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment