File: myrand.c

package info (click to toggle)
postfix 3.10.6-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 27,968 kB
  • sloc: ansic: 134,721; makefile: 17,984; sh: 6,966; perl: 2,796; python: 1,448; awk: 158
file content (63 lines) | stat: -rw-r--r-- 1,264 bytes parent folder | download | duplicates (19)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
/*++
/* NAME
/*	myrand 3
/* SUMMARY
/*	rand wrapper
/* SYNOPSIS
/*	#include <myrand.h>
/*
/*	void	mysrand(seed)
/*	int	seed;
/*
/*	int	myrand()
/* DESCRIPTION
/*	This module implements a wrapper for the portable, pseudo-random
/*	number generator. The wrapper adds automatic initialization.
/*
/*	mysrand() performs initialization. This call may be skipped.
/*
/*	myrand() returns a pseudo-random number in the range [0, RAND_MAX].
/*	If mysrand() was not called, it is invoked with the process ID
/*	ex-or-ed with the time of day in seconds.
/* LICENSE
/* .ad
/* .fi
/*	The Secure Mailer license must be distributed with this software.
/* WARNING
/*	Do not use this code for generating unpredictable numbers.
/* AUTHOR(S)
/*	Wietse Venema
/*	IBM T.J. Watson Research
/*	P.O. Box 704
/*	Yorktown Heights, NY 10598, USA
/*--*/

/* System library. */

#include <sys_defs.h>
#include <stdlib.h>
#include <unistd.h>
#include <time.h>

/* Utility library. */

#include <myrand.h>

static int myrand_initdone = 0;

/* mysrand - initialize */

void    mysrand(int seed)
{
    srand(seed);
    myrand_initdone = 1;
}

/* myrand - pseudo-random number */

int     myrand(void)
{
    if (myrand_initdone == 0)
	mysrand(getpid() ^ time((time_t *) 0));
    return (rand());
}