summaryrefslogtreecommitdiff
path: root/entropy.c
diff options
context:
space:
mode:
Diffstat (limited to 'entropy.c')
-rw-r--r--entropy.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/entropy.c b/entropy.c
index 842760992..aa62650a2 100644
--- a/entropy.c
+++ b/entropy.c
@@ -35,7 +35,12 @@
35#include <openssl/rand.h> 35#include <openssl/rand.h>
36#include <openssl/sha.h> 36#include <openssl/sha.h>
37 37
38RCSID("$Id: entropy.c,v 1.17 2000/07/09 12:42:33 djm Exp $"); 38/* SunOS 4.4.4 needs this */
39#ifdef HAVE_FLOATINGPOINT_H
40# include <floatingpoint.h>
41#endif /* HAVE_FLOATINGPOINT_H */
42
43RCSID("$Id: entropy.c,v 1.18 2000/07/15 04:59:15 djm Exp $");
39 44
40#ifndef offsetof 45#ifndef offsetof
41# define offsetof(type, member) ((size_t) &((type *)0)->member) 46# define offsetof(type, member) ((size_t) &((type *)0)->member)