summaryrefslogtreecommitdiffstats
path: root/crypto/rand/rand_egd.c
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>2000-02-27 17:37:41 +0000
committerBodo Möller <bodo@openssl.org>2000-02-27 17:37:41 +0000
commitfd74679ae29e0a286ec3206e3a4957bb5f87e6bf (patch)
treea7ccdfdccfb0d1016a3c156d81bf2a1506a243b6 /crypto/rand/rand_egd.c
parent587bb0e02ef5ab7cd65e4adb948397f53ca5c4b5 (diff)
Use standard header file string.h for memset prototype (where
"standard" refers to the C language, probably there's also some standard that defines memory.h).
Diffstat (limited to 'crypto/rand/rand_egd.c')
-rw-r--r--crypto/rand/rand_egd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/rand/rand_egd.c b/crypto/rand/rand_egd.c
index b9c028b88a..d834408bd4 100644
--- a/crypto/rand/rand_egd.c
+++ b/crypto/rand/rand_egd.c
@@ -70,7 +70,7 @@ int RAND_egd(const char *path)
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/un.h>
-#include <memory.h>
+#include <string.h>
#ifndef offsetof
# define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER)