md5: Fix cross-build after c2870e576b

On macOS and Linux the current set of headers do not end up pulling in
sys/param.h, causing MAXPATHLEN to not be defined and the build to fail.

(cherry picked from commit cab31e0e21)
This commit is contained in:
Jessica Clarke 2021-06-25 22:00:11 +01:00 committed by Stefan Eßer
parent 4048460078
commit a4f9c6a9e6

View file

@ -21,6 +21,7 @@
__FBSDID("$FreeBSD$");
#include <sys/types.h>
#include <sys/param.h>
#include <sys/time.h>
#include <sys/resource.h>
#include <err.h>