Fix random() and srandom() prototypes to match the standard.

These prototypes were needlessly different from the standard. Fix them
to be the same, and fix the surrounding code after the changes.

Sponsored by: Netflix
This commit is contained in:
Warner Losh 2017-12-02 00:07:19 +00:00
parent 9462787dba
commit dcaa2d76dc
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=326445
3 changed files with 8 additions and 8 deletions

View file

@ -169,10 +169,10 @@ may be used to prevent a variable being unset.
.Xc
.It Xo
.Ft void
.Fn srandom "unsigned long seed"
.Fn srandom "unsigned int seed"
.Xc
.It Xo
.Ft "unsigned long"
.Ft "long"
.Fn random void
.Xc
.It Xo

View file

@ -34,12 +34,12 @@ __FBSDID("$FreeBSD$");
#include <sys/types.h>
static u_long randseed = 1;
static long randseed = 1;
void
srandom(seed)
u_long seed;
srandom(unsigned int seed)
{
randseed = seed;
}
@ -48,8 +48,8 @@ srandom(seed)
* and whatever else we might use it for. The result is uniform on
* [0, 2^31 - 1].
*/
u_long
random()
long
random(void)
{
long x, hi, lo, t;

View file

@ -281,7 +281,7 @@ extern ssize_t read(int, void *, size_t);
extern ssize_t write(int, void *, size_t);
extern struct dirent *readdirfd(int);
extern void srandom(u_long seed);
extern void srandom(unsigned int);
extern u_long random(void);
/* imports from stdlib, locally modified */