Imported Upstream version 2.9.0
[debian/cc1111] / device / lib / pic16 / libc / stdlib / rand.c
1 /*-
2  * rand.c - random number generation routines
3  *
4  * this source was part of the avr-lib library
5  * modified for SDCC/pic16 by Vangelis Rokas, 2005 <vrokas AT users.sourceforge.net>
6  *
7  *
8  * Copyright (c) 1990, 1993
9  *      The Regents of the University of California.  All rights reserved.
10  *
11  * Redistribution and use in source and binary forms, with or without
12  * modification, are permitted provided that the following conditions
13  * are met:
14  * 1. Redistributions of source code must retain the above copyright
15  *    notice, this list of conditions and the following disclaimer.
16  * 2. Redistributions in binary form must reproduce the above copyright
17  *    notice, this list of conditions and the following disclaimer in the
18  *    documentation and/or other materials provided with the distribution.
19  * 3. All advertising materials mentioning features or use of this software
20  *    must display the following acknowledgement:
21  *      This product includes software developed by the University of
22  *      California, Berkeley and its contributors.
23  * 4. Neither the name of the University nor the names of its contributors
24  *    may be used to endorse or promote products derived from this software
25  *    without specific prior written permission.
26  *
27  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
28  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
29  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
30  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
31  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
32  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
33  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
34  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
35  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
36  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
37  * SUCH DAMAGE.
38  *
39  * Posix rand_r function added May 1999 by Wes Peters <wes@softweyr.com>.
40  */
41
42 #include <stdlib.h>
43
44 static long do_rand(unsigned long *ctx)
45 {
46   return ((*ctx = *ctx * 1103515245UL + 12345UL) % ((unsigned long)RAND_MAX + 1));
47 }
48
49 long rand_r(unsigned long *ctx)
50 {
51   unsigned long val = (unsigned long) *ctx;
52   
53     *ctx = do_rand(&val);
54     return (long) *ctx;
55 }
56
57 static unsigned long next = 1;
58
59 long rand(void)
60 {
61   return do_rand(&next);
62 }
63
64 void srand(unsigned long seed)
65 {
66   next = seed;
67 }
68
69 #ifdef TEST
70
71 main()
72 {
73     int i;
74     unsigned long myseed;
75
76     stdout = STREAM_GPSIM;
77
78     printf("seeding rand with 0x19610910: \n");
79     srand(0x19610910);
80
81     printf("generating three pseudo-random numbers:\n");
82     for (i = 0; i < 10; i++)
83     {
84         printf("next random number = %ld\n", rand());
85     }
86
87     printf("generating the same sequence with rand_r:\n");
88     myseed = 0x19610910;
89     for (i = 0; i < 10; i++)
90     {
91         printf("next random number = %ld\n", rand_r(&myseed));
92     }
93
94     return 0;
95 }
96
97 #endif /* TEST */
98