hash: include util.h for MIN macro

The hash_intmd5.c file inadvertently relied on the system headers to
provide the MIN macro, but it is missing with some libc implementations.
This commit is contained in:
Miroslav Lichvar 2018-09-20 15:01:16 +02:00
parent 91f3f97ea7
commit 948ecf8431

View file

@ -29,6 +29,7 @@
#include "sysincl.h"
#include "hash.h"
#include "memory.h"
#include "util.h"
#include "md5.c"