projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
587bb0e
)
Use standard header file string.h for memset prototype (where
author
Bodo Möller
<bodo@openssl.org>
Sun, 27 Feb 2000 17:37:41 +0000
(17:37 +0000)
committer
Bodo Möller
<bodo@openssl.org>
Sun, 27 Feb 2000 17:37:41 +0000
(17:37 +0000)
"standard" refers to the C language, probably there's also some
standard that defines memory.h).
crypto/rand/rand_egd.c
patch
|
blob
|
history
diff --git
a/crypto/rand/rand_egd.c
b/crypto/rand/rand_egd.c
index b9c028b88a5f03ab19b473a3b97430a581e3cb87..d834408bd4e7579b8be6f7e4fd104641cbce0afb 100644
(file)
--- 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)