musl-tcc/src/prng/lcong48.c

9 lines
138 B
C
Raw Permalink Normal View History

2022-03-20 08:48:53 +00:00
#include <stdlib.h>
#include <string.h>
#include "rand48.h"
void lcong48(unsigned short p[7])
{
memcpy(__seed48, p, sizeof __seed48);
}