blob: 766dcc376096edca2a6bdee28feb0eea5c40c798 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include <ntp_types.h>
long ntp_random P((void));
void ntp_srandom P((unsigned long));
void ntp_srandomdev P((void));
char * ntp_initstate P((unsigned long, /* seed for R.N.G. */
char *, /* pointer to state array */
long /* # bytes of state info */
));
char * ntp_setstate P((char *)); /* pointer to state array */
|