diff options
author | roberto <roberto@FreeBSD.org> | 2008-08-22 15:58:00 +0000 |
---|---|---|
committer | roberto <roberto@FreeBSD.org> | 2008-08-22 15:58:00 +0000 |
commit | b85c7169a740b2edf0106ad59fdaa1b0160f823c (patch) | |
tree | 2b9fb7f64eacb322e95695e412c923e97ba33e88 /contrib/ntp/include/ntp_random.h | |
parent | 1d197cfe9feac6bc29537d8e53c30b6435937b95 (diff) | |
parent | 7a6072eb585696f8856cd498c3fd194cf49f14c6 (diff) | |
download | FreeBSD-src-b85c7169a740b2edf0106ad59fdaa1b0160f823c.zip FreeBSD-src-b85c7169a740b2edf0106ad59fdaa1b0160f823c.tar.gz |
Merge ntpd & friends 4.2.4p5 from vendor/ntp/dist into head. Next commit
will update usr.sbin/ntp to match this.
MFC after: 2 weeks
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 */ + + + |