diff options
author | lloyd <[email protected]> | 2011-05-24 11:39:58 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2011-05-24 11:39:58 +0000 |
commit | 6bf99bb01aac7266ec6f3c5556fc5177e0f881ad (patch) | |
tree | 77276c85cda417cd1c58cc3f7156ee69b55dad88 /src | |
parent | 8bb2bba80af0e39848c769c2ea408b831ca7391e (diff) |
FD_ZERO on Solaris uses memset, and assumes we included string.h
already. Reported by Jeremy C. Reed <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/entropy/dev_random/dev_random.cpp | 1 | ||||
-rw-r--r-- | src/entropy/unix_procs/unix_cmd.cpp | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/entropy/dev_random/dev_random.cpp b/src/entropy/dev_random/dev_random.cpp index b15240aba..d14ae43ae 100644 --- a/src/entropy/dev_random/dev_random.cpp +++ b/src/entropy/dev_random/dev_random.cpp @@ -12,6 +12,7 @@ #include <sys/stat.h> #include <unistd.h> #include <fcntl.h> +#include <string.h> namespace Botan { diff --git a/src/entropy/unix_procs/unix_cmd.cpp b/src/entropy/unix_procs/unix_cmd.cpp index f4ae5054c..930444075 100644 --- a/src/entropy/unix_procs/unix_cmd.cpp +++ b/src/entropy/unix_procs/unix_cmd.cpp @@ -12,6 +12,7 @@ #include <sys/time.h> #include <sys/types.h> #include <sys/wait.h> +#include <string.h> #include <stdlib.h> #include <unistd.h> #include <signal.h> |