]> git.ipfire.org Git - thirdparty/ipxe.git/commitdiff
[rng] Add missing #include <string.h>
authorMichael Brown <mcb30@ipxe.org>
Tue, 21 Feb 2012 12:39:20 +0000 (12:39 +0000)
committerMichael Brown <mcb30@ipxe.org>
Tue, 21 Feb 2012 12:42:37 +0000 (12:42 +0000)
Signed-off-by: Michael Brown <mcb30@ipxe.org>
src/crypto/drbg.c
src/crypto/hash_df.c
src/crypto/hmac_drbg.c
src/tests/hash_df_test.c
src/tests/hmac_drbg_test.c

index 68aa7857a503f5cd4ef2511f81ec2f1d1d9bde33..58e8fa7b52a6820d93ddb9a51f1b008f44c1beeb 100644 (file)
@@ -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>
index 4c2d28a9596214e97c0df8f1692e190c26c461da..9e3da181abb311e6a02eb11df8e1fb48fbed6a81 100644 (file)
@@ -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>
index 64613d014fe6cd569ec552af2a54cfbdbae26e9e..efbd67dc0839bc191cbf187070d88f30dbb0121f 100644 (file)
@@ -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>
index 563704f445c1f8748a90891ee3bb5e81cc45ecf5..201b4a18774c14562d99b15c991a1781c268b657 100644 (file)
@@ -33,6 +33,7 @@ FILE_LICENCE ( GPL2_OR_LATER );
 #undef NDEBUG
 
 #include <assert.h>
+#include <string.h>
 #include <ipxe/hash_df.h>
 #include <ipxe/test.h>
 
index cf06662003be181c5691b92fb1647d7184546191..ad5584f192b2cddb684cdf0ccd7fdbb21cecf88d 100644 (file)
@@ -33,6 +33,7 @@ FILE_LICENCE ( GPL2_OR_LATER );
 #undef NDEBUG
 
 #include <assert.h>
+#include <string.h>
 #include <ipxe/hmac_drbg.h>
 #include <ipxe/test.h>