blob: f080587bfa2ee91f5631d37094850706eb4b4712 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#include <stdlib.h>
#include <string.h>
#include "rand48.h"
void lcong48(unsigned short p[7])
{
memcpy(__seed48, p, sizeof __seed48);
}
#ifdef TEST
int
main(void) {
return 0;
}
#endif
|