xref: /netbsd/lib/libc/stdlib/lcong48.c (revision bf9ec67e)
1 /*	$NetBSD: lcong48.c,v 1.7 2000/01/22 22:19:19 mycroft Exp $	*/
2 
3 /*
4  * Copyright (c) 1993 Martin Birgmeier
5  * All rights reserved.
6  *
7  * You may redistribute unmodified or modified versions of this source
8  * code provided that the above copyright notice and this and the
9  * following conditions are retained.
10  *
11  * This software is provided ``as is'', and comes with no warranties
12  * of any kind. I shall in no event be liable for anything that happens
13  * to anyone/anything when using this software.
14  */
15 
16 #include "namespace.h"
17 
18 #include <assert.h>
19 
20 #include "rand48.h"
21 
22 #ifdef __weak_alias
23 __weak_alias(lcong48,_lcong48)
24 #endif
25 
26 void
27 lcong48(unsigned short p[7])
28 {
29 	_DIAGASSERT(p != NULL);
30 
31 	__rand48_seed[0] = p[0];
32 	__rand48_seed[1] = p[1];
33 	__rand48_seed[2] = p[2];
34 	__rand48_mult[0] = p[3];
35 	__rand48_mult[1] = p[4];
36 	__rand48_mult[2] = p[5];
37 	__rand48_add = p[6];
38 }
39