summaryrefslogtreecommitdiff
path: root/entropy.c
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2006-07-11 19:01:51 +1000
committerDarren Tucker <dtucker@zip.com.au>2006-07-11 19:01:51 +1000
commite0e4aad1fdd8770283798eede1297f363b43498d (patch)
treeedf9a71e9292a561ee4efcdd30bf0eebfb179c64 /entropy.c
parent2ee50c5cce20c67a4e67d2b56b1833ba4227975a (diff)
- (dtucker) [entropy.c] More fcntl.h, this time on AIX (and probably
others).
Diffstat (limited to 'entropy.c')
-rw-r--r--entropy.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/entropy.c b/entropy.c
index d60583b34..b98e3c859 100644
--- a/entropy.c
+++ b/entropy.c
@@ -27,6 +27,14 @@
27#include <sys/types.h> 27#include <sys/types.h>
28#include <sys/wait.h> 28#include <sys/wait.h>
29 29
30#ifdef HAVE_SYS_STAT_H
31# include <sys/stat.h>
32#endif
33
34#ifdef HAVE_FCNTL_H
35# include <fcntl.h>
36#endif
37
30#include <openssl/rand.h> 38#include <openssl/rand.h>
31#include <openssl/crypto.h> 39#include <openssl/crypto.h>
32#include <openssl/err.h> 40#include <openssl/err.h>