package An official xmake package repository https://xrepo.xmake.io/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

9 lines
140 B

#include <stdlib.h>
double drand48(void) {
return rand() / (RAND_MAX + 1.0);
}
void srand48(long int seedval) {
srand(seedval);
}