summaryrefslogtreecommitdiffstats
path: root/entropy.h
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2018-07-10 19:39:52 +1000
committerDamien Miller <djm@mindrot.org>2018-07-10 19:39:52 +1000
commit120a1ec74e8d9d29f4eb9a27972ddd22351ddef9 (patch)
tree52308557de781f1d8ffb083369e0c209bc305c02 /entropy.h
parent0f3958c1e6ffb8ea4ba27e2a97a00326fce23246 (diff)
Adapt portable to legacy buffer API removal
Diffstat (limited to 'entropy.h')
-rw-r--r--entropy.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/entropy.h b/entropy.h
index 9d5285b2..870164d3 100644
--- a/entropy.h
+++ b/entropy.h
@@ -25,11 +25,10 @@
#ifndef _RANDOMS_H
#define _RANDOMS_H
-#include "buffer.h"
+struct sshbuf;
void seed_rng(void);
-
-void rexec_send_rng_seed(Buffer *);
-void rexec_recv_rng_seed(Buffer *);
+void rexec_send_rng_seed(struct sshbuf *);
+void rexec_recv_rng_seed(struct sshbuf *);
#endif /* _RANDOMS_H */