diff options
| author | Michael Brown | 2012-02-21 13:39:20 +0100 |
|---|---|---|
| committer | Michael Brown | 2012-02-21 13:42:37 +0100 |
| commit | a99d5d5aca298c0618919d9be33ac5e73cb838e7 (patch) | |
| tree | 238c4478f11131be3d08050ec87ca3b788035de2 /src/crypto | |
| parent | [802.11] Add missing #include <string.h> (diff) | |
| download | ipxe-a99d5d5aca298c0618919d9be33ac5e73cb838e7.tar.gz ipxe-a99d5d5aca298c0618919d9be33ac5e73cb838e7.tar.xz ipxe-a99d5d5aca298c0618919d9be33ac5e73cb838e7.zip | |
[rng] Add missing #include <string.h>
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/crypto')
| -rw-r--r-- | src/crypto/drbg.c | 1 | ||||
| -rw-r--r-- | src/crypto/hash_df.c | 1 | ||||
| -rw-r--r-- | src/crypto/hmac_drbg.c | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/src/crypto/drbg.c b/src/crypto/drbg.c index 68aa7857a..58e8fa7b5 100644 --- a/src/crypto/drbg.c +++ b/src/crypto/drbg.c @@ -36,6 +36,7 @@ FILE_LICENCE ( GPL2_OR_LATER ); */ #include <stdint.h> +#include <string.h> #include <errno.h> #include <assert.h> #include <ipxe/entropy.h> diff --git a/src/crypto/hash_df.c b/src/crypto/hash_df.c index 4c2d28a95..9e3da181a 100644 --- a/src/crypto/hash_df.c +++ b/src/crypto/hash_df.c @@ -36,6 +36,7 @@ FILE_LICENCE ( GPL2_OR_LATER ); */ #include <stdint.h> +#include <string.h> #include <byteswap.h> #include <ipxe/crypto.h> #include <ipxe/hash_df.h> diff --git a/src/crypto/hmac_drbg.c b/src/crypto/hmac_drbg.c index 64613d014..efbd67dc0 100644 --- a/src/crypto/hmac_drbg.c +++ b/src/crypto/hmac_drbg.c @@ -36,6 +36,7 @@ FILE_LICENCE ( GPL2_OR_LATER ); */ #include <stdint.h> +#include <string.h> #include <errno.h> #include <ipxe/crypto.h> #include <ipxe/hmac.h> |
