From: Bodo Möller Date: Sun, 27 Feb 2000 17:37:41 +0000 (+0000) Subject: Use standard header file string.h for memset prototype (where X-Git-Tag: OpenSSL_0_9_5a-beta1~168 X-Git-Url: https://git.openssl.org/?p=openssl.git;a=commitdiff_plain;h=fd74679ae29e0a286ec3206e3a4957bb5f87e6bf 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). --- 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 #include #include -#include +#include #ifndef offsetof # define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER)