musl-tcc/src/prng/srand48.c

7 lines
106 B
C
Raw Permalink Normal View History

2022-03-20 08:48:53 +00:00
#include <stdlib.h>
void srand48(long seed)
{
seed48((unsigned short [3]){ 0x330e, seed, seed>>16 });
}