summaryrefslogtreecommitdiff
path: root/entropy.c
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2007-03-13 07:35:38 +1100
committerDarren Tucker <dtucker@zip.com.au>2007-03-13 07:35:38 +1100
commita8d51ee3078c46918b88164330262555704ff869 (patch)
tree516c03e8116423715de18a869d60eb4f8de20a4c /entropy.c
parentc49dd34a3e717cd68bff21a61cfa4a57f4d5bea1 (diff)
- (dtucker) [entropy.c scard-opensc.c ssh-rand-helper.c] Bug #1294: include
string.h to prevent warnings, from vapier at gentoo.org.
Diffstat (limited to 'entropy.c')
-rw-r--r--entropy.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/entropy.c b/entropy.c
index ccabb1364..8b705397f 100644
--- a/entropy.c
+++ b/entropy.c
@@ -35,8 +35,9 @@
35# include <fcntl.h> 35# include <fcntl.h>
36#endif 36#endif
37#include <stdarg.h> 37#include <stdarg.h>
38#include <unistd.h> 38#include <string.h>
39#include <signal.h> 39#include <signal.h>
40#include <unistd.h>
40 41
41#include <openssl/rand.h> 42#include <openssl/rand.h>
42#include <openssl/crypto.h> 43#include <openssl/crypto.h>