git: 27e74c8fff35 - main - md5: Add missing <errno.h>.

From: Dag-Erling Smørgrav <des_at_FreeBSD.org>
Date: Thu, 11 May 2023 06:24:09 UTC
The branch main has been updated by des:

URL: https://cgit.FreeBSD.org/src/commit/?id=27e74c8fff358c113b1afdd3abfc58dca902180c

commit 27e74c8fff358c113b1afdd3abfc58dca902180c
Author:     Dag-Erling Smørgrav <des@FreeBSD.org>
AuthorDate: 2023-05-11 06:23:56 +0000
Commit:     Dag-Erling Smørgrav <des@FreeBSD.org>
CommitDate: 2023-05-11 06:24:02 +0000

    md5: Add missing <errno.h>.
    
    Sponsored by:   Klara, Inc.
    Reviewed by:    yuripv
    Differential Revision:  https://reviews.freebsd.org/D40051
---
 sbin/md5/md5.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sbin/md5/md5.c b/sbin/md5/md5.c
index 202cc830d4ed..459d364f8ca7 100644
--- a/sbin/md5/md5.c
+++ b/sbin/md5/md5.c
@@ -26,6 +26,7 @@ __FBSDID("$FreeBSD$");
 #include <sys/time.h>
 
 #include <err.h>
+#include <errno.h>
 #include <fcntl.h>
 #include <getopt.h>
 #include <md5.h>