]> git.ipfire.org Git - thirdparty/ipxe.git/commitdiff
[rng] Add missing #include <assert.h>
authorMichael Brown <mcb30@ipxe.org>
Sun, 4 Mar 2012 14:59:32 +0000 (14:59 +0000)
committerMichael Brown <mcb30@ipxe.org>
Sun, 4 Mar 2012 15:14:20 +0000 (15:14 +0000)
Signed-off-by: Michael Brown <mcb30@ipxe.org>
src/crypto/hash_df.c
src/crypto/hmac_drbg.c

index 9e3da181abb311e6a02eb11df8e1fb48fbed6a81..1074f8ca6f8a53fd5b4a04364f03f0c0827a3714 100644 (file)
@@ -37,6 +37,7 @@ FILE_LICENCE ( GPL2_OR_LATER );
 
 #include <stdint.h>
 #include <string.h>
+#include <assert.h>
 #include <byteswap.h>
 #include <ipxe/crypto.h>
 #include <ipxe/hash_df.h>
index efbd67dc0839bc191cbf187070d88f30dbb0121f..9e70e4e6f5053c2653eeafa839fe7f6e4bed26d8 100644 (file)
@@ -38,6 +38,7 @@ FILE_LICENCE ( GPL2_OR_LATER );
 #include <stdint.h>
 #include <string.h>
 #include <errno.h>
+#include <assert.h>
 #include <ipxe/crypto.h>
 #include <ipxe/hmac.h>
 #include <ipxe/hmac_drbg.h>