xref: /freebsd/contrib/ntp/include/ntp_random.h (revision 641a6cfb86023499caafe26a4d821a0b885cf00b)
1 
2 #include <ntp_types.h>
3 
4 long ntp_random P((void));
5 void ntp_srandom P((unsigned long));
6 void ntp_srandomdev P((void));
7 char * ntp_initstate P((unsigned long, 	/* seed for R.N.G. */
8 			char *,		/* pointer to state array */
9 			long		/* # bytes of state info */
10 			));
11 char * ntp_setstate P((char *));	/* pointer to state array */
12 
13 
14 
15