summaryrefslogtreecommitdiffstats
path: root/crypto/rand/rand_egd.c
diff options
context:
space:
mode:
authorBen Laurie <ben@openssl.org>2000-02-27 17:01:20 +0000
committerBen Laurie <ben@openssl.org>2000-02-27 17:01:20 +0000
commitc850925cdf78d143e0150224cbe9753d20725559 (patch)
tree6803853bbd028d499d4d425079d9d6fd85461dd9 /crypto/rand/rand_egd.c
parent707ef52e21e07cd1ea7a370cf568da222bcb07cf (diff)
Declare memset.
Diffstat (limited to 'crypto/rand/rand_egd.c')
-rw-r--r--crypto/rand/rand_egd.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/crypto/rand/rand_egd.c b/crypto/rand/rand_egd.c
index 11de4f253f..b9c028b88a 100644
--- a/crypto/rand/rand_egd.c
+++ b/crypto/rand/rand_egd.c
@@ -70,6 +70,7 @@ int RAND_egd(const char *path)
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/un.h>
+#include <memory.h>
#ifndef offsetof
# define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER)