github.com/afumu/libc@v0.0.6/musl/src/prng/srand48.c (about)

     1  #include <stdlib.h>
     2  
     3  void srand48(long seed)
     4  {
     5  	seed48((unsigned short [3]){ 0x330e, seed, seed>>16 });
     6  }