lcong48.c raw

   1  #include <stdlib.h>
   2  #include <string.h>
   3  #include "rand48.h"
   4  
   5  void lcong48(unsigned short p[7])
   6  {
   7  	memcpy(__seed48, p, sizeof __seed48);
   8  }
   9