1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-11-27 08:00:11 +00:00

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.
This commit is contained in:
Jessica Clarke 2021-06-25 22:00:11 +01:00
parent 0bcd49c13a
commit cab31e0e21

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>