random(4): Remove unused definitions

Approved by:	csprng(gordon, markm)
Differential Revision:	https://reviews.freebsd.org/D22481
This commit is contained in:
Conrad Meyer 2019-11-22 20:18:07 +00:00
parent ba78f78f44
commit 92ebf15da5

View File

@ -65,12 +65,9 @@ extern bool random_bypass_disable_warnings;
struct harvest_event;
typedef void random_alg_init_t(void *);
typedef void random_alg_deinit_t(void *);
typedef void random_alg_pre_read_t(void);
typedef void random_alg_read_t(uint8_t *, size_t);
typedef bool random_alg_seeded_t(void);
typedef void random_alg_reseed_t(void);
typedef void random_alg_eventprocessor_t(struct harvest_event *);
typedef u_int random_source_read_t(void *, u_int);