master
 1#include <stdlib.h>
 2#include <string.h>
 3#include "rand48.h"
 4
 5unsigned short *seed48(unsigned short *s)
 6{
 7	static unsigned short p[3];
 8	memcpy(p, __seed48, sizeof p);
 9	memcpy(__seed48, s, sizeof p);
10	return p;
11}