From: Miroslav Lichvar Date: Thu, 20 Sep 2018 13:01:16 +0000 (+0200) Subject: hash: include util.h for MIN macro X-Git-Tag: 3.5-pre1~34 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=948ecf84314f78da82e0e2b07b6570ca9cff86c8;p=thirdparty%2Fchrony.git 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. --- diff --git a/hash_intmd5.c b/hash_intmd5.c index 0b60f9b7..49da1cf0 100644 --- a/hash_intmd5.c +++ b/hash_intmd5.c @@ -29,6 +29,7 @@ #include "sysincl.h" #include "hash.h" #include "memory.h" +#include "util.h" #include "md5.c"