Quellcode durchsuchen

[rng] Add missing #include <assert.h>

Signed-off-by: Michael Brown <mcb30@ipxe.org>
tags/v1.20.1
Michael Brown vor 13 Jahren
Ursprung
Commit
c5c1ae42e6
2 geänderte Dateien mit 2 neuen und 0 gelöschten Zeilen
  1. 1
    0
      src/crypto/hash_df.c
  2. 1
    0
      src/crypto/hmac_drbg.c

+ 1
- 0
src/crypto/hash_df.c Datei anzeigen

@@ -37,6 +37,7 @@ FILE_LICENCE ( GPL2_OR_LATER );
37 37
 
38 38
 #include <stdint.h>
39 39
 #include <string.h>
40
+#include <assert.h>
40 41
 #include <byteswap.h>
41 42
 #include <ipxe/crypto.h>
42 43
 #include <ipxe/hash_df.h>

+ 1
- 0
src/crypto/hmac_drbg.c Datei anzeigen

@@ -38,6 +38,7 @@ FILE_LICENCE ( GPL2_OR_LATER );
38 38
 #include <stdint.h>
39 39
 #include <string.h>
40 40
 #include <errno.h>
41
+#include <assert.h>
41 42
 #include <ipxe/crypto.h>
42 43
 #include <ipxe/hmac.h>
43 44
 #include <ipxe/hmac_drbg.h>

Laden…
Abbrechen
Speichern