summaryrefslogtreecommitdiff
path: root/src/rand.h
diff options
context:
space:
mode:
authorGlenn Strauss <gstrauss@gluelogic.com>2017-09-20 22:48:35 -0400
committerGlenn Strauss <gstrauss@gluelogic.com>2017-09-20 22:48:35 -0400
commit6e171bd4b98128e215ad8f13702bd1183cb30edb (patch)
tree79ef6bd6c957dad86484e989a59dcaae008240db /src/rand.h
parent2bed2c14afbf6c2d3222b96ef2f8f13421ef8ce5 (diff)
downloadlighttpd-git-6e171bd4b98128e215ad8f13702bd1183cb30edb.tar.gz
[core] adjust li_rand_pseudo* interfaces
Diffstat (limited to 'src/rand.h')
-rw-r--r--src/rand.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/rand.h b/src/rand.h
index c7bcba23..d80f6a12 100644
--- a/src/rand.h
+++ b/src/rand.h
@@ -2,7 +2,8 @@
#define LI_RAND_H_
#include "first.h"
-int li_rand_pseudo_bytes (void);
+int li_rand_pseudo (void);
+void li_rand_pseudo_bytes (unsigned char *buf, int num);
void li_rand_reseed (void);
int li_rand_bytes (unsigned char *buf, int num);
void li_rand_cleanup (void);