xref: /netbsd-src/external/bsd/ntp/dist/include/ntp_random.h (revision b1c86f5f087524e68db12794ee9c3e3da1ab17a0)
1 /*	$NetBSD: ntp_random.h,v 1.1.1.1 2009/12/13 16:54:52 kardel Exp $	*/
2 
3 
4 #include <ntp_types.h>
5 
6 long ntp_random (void);
7 void ntp_srandom (unsigned long);
8 void ntp_srandomdev (void);
9 char * ntp_initstate (unsigned long, 	/* seed for R.N.G. */
10 			char *,		/* pointer to state array */
11 			long		/* # bytes of state info */
12 			);
13 char * ntp_setstate (char *);	/* pointer to state array */
14 
15 
16 
17