mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
u_int -> unsigned int, so that we don't have to include <sys/types.h>
or depend on <stdio.h> bogusly including it.
This commit is contained in:
parent
c33a3f955c
commit
7e80dad5c6
1 changed files with 2 additions and 2 deletions
|
|
@ -190,7 +190,7 @@ static long *end_ptr = &randtbl[DEG_3 + 1];
|
|||
*/
|
||||
void
|
||||
srandom(x)
|
||||
u_int x;
|
||||
unsigned int x;
|
||||
{
|
||||
register int i, j;
|
||||
|
||||
|
|
@ -229,7 +229,7 @@ srandom(x)
|
|||
*/
|
||||
char *
|
||||
initstate(seed, arg_state, n)
|
||||
u_int seed; /* seed for R.N.G. */
|
||||
unsigned int seed; /* seed for R.N.G. */
|
||||
char *arg_state; /* pointer to state array */
|
||||
int n; /* # bytes of state info */
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue