aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>2021-05-20 17:26:46 +0000
committerStefan Eßer <se@FreeBSD.org>2021-06-28 16:03:38 +0000
commit9ecf4bd8e90470d4e282106225a5fbb05a538c2a (patch)
tree02f6f55efe4b63df1609f4ea5bb578973a2a2ba6
parentc0d5665be0dce799c5ca9a72b3ee8e1da8dd99d7 (diff)
downloadsrc-9ecf4bd8e90470d4e282106225a5fbb05a538c2a.tar.gz
src-9ecf4bd8e90470d4e282106225a5fbb05a538c2a.zip
md5: portability fix -- include stdbool.h explicitly
stdbool.h needs to be included to use type bool variables. Due to namespace pollution, this gets brought in on FreeBSD, but not on other systems. Include it explicilty. Noticed by: arichards@ Sponsored by: Netflix (cherry picked from commit d0ea5e467f3c44909667c5ee90c3d26653fb6687)
-rw-r--r--sbin/md5/md5.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/sbin/md5/md5.c b/sbin/md5/md5.c
index 4381ef124c7b..e553d4c56e85 100644
--- a/sbin/md5/md5.c
+++ b/sbin/md5/md5.c
@@ -34,6 +34,7 @@ __FBSDID("$FreeBSD$");
#include <sha512.h>
#include <sha512t.h>
#include <skein.h>
+#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>