Fix missing-prototypes

utils.c:38:15: error: no previous prototype for 'min_array' [-Werror=missing-prototypes]
utils.c:55:15: error: no previous prototype for 'max_array' [-Werror=missing-prototypes]
utils.c:73:7: error: no previous prototype for 'format_byte_humanreadable' [-Werror=missing-prototypes]

Signed-off-by: Olaf Hering <olaf@aepfle.de>
master
Olaf Hering 2020-12-18 22:25:42 +01:00 committed by Romain Bouvier
parent 7a4820a3f8
commit d3da808568
1 changed files with 1 additions and 0 deletions

View File

@ -34,6 +34,7 @@
#define BUFSIZ 512
#endif
#include "utils.h"
/* ---------------------------------------------------------------------------------------------- */
unsigned long min_array( unsigned long array[], int size )
{