diff options
Diffstat (limited to 'contrib/ntp/include/ntp_random.h')
-rw-r--r-- | contrib/ntp/include/ntp_random.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/contrib/ntp/include/ntp_random.h b/contrib/ntp/include/ntp_random.h new file mode 100644 index 0000000..766dcc3 --- /dev/null +++ b/contrib/ntp/include/ntp_random.h @@ -0,0 +1,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 */ + + + |