summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorGuillem Jover <guillem@hadrons.org>2008-06-18 08:44:18 +0300
committerGuillem Jover <guillem@hadrons.org>2008-06-18 08:44:18 +0300
commitbf4eeb29f049e374b33b788a8df02357d659183c (patch)
tree38f2c81448e5c8e9fabc5cde2fa5d4d7dc48d245 /include
parent26ab4750eebff515ca5717ee272a79fa3866ab55 (diff)
downloadlibbsd-bf4eeb29f049e374b33b788a8df02357d659183c.tar.gz
Add arc4random_stir and arc4random_addrandom functions
Diffstat (limited to 'include')
-rw-r--r--include/bsd/random.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/bsd/random.h b/include/bsd/random.h
index f3ab000..9999a8d 100644
--- a/include/bsd/random.h
+++ b/include/bsd/random.h
@@ -30,6 +30,8 @@
#include <sys/types.h>
u_int32_t arc4random();
+void arc4random_stir();
+void arc4random_addrandom(u_char *dat, int datlen);
#endif