summaryrefslogtreecommitdiff
path: root/src/prng/seed48.c
blob: e0699c092afd677bc40339707ac4ca1ab7e265ea (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#include <stdlib.h>
#include <string.h>

extern unsigned short __seed48[7];

unsigned short *seed48(unsigned short *s)
{
	static unsigned short p[3];
	memcpy(p, __seed48, sizeof p);
	memcpy(__seed48, s, sizeof p);
	return p;
}