dns: fix workaround for systems defaulting to ipv6-only sockets
[musl] / src / prng / lcong48.c
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 }