From 40fd39fbcda7d722b8b2e2ec4078e716e8a61104 Mon Sep 17 00:00:00 2001 From: vangyzen Date: Wed, 30 Nov 2016 18:34:40 +0000 Subject: [PATCH] Include limits.h for CHAR_MAX This was needed on stable/10. Apparently, sys/param.h supplies CHAR_MAX on head. Include limits.h anyway, for consistency, and because C says so. Sponsored by: Dell EMC --- usr.bin/locale/locale.c | 1 + 1 file changed, 1 insertion(+) diff --git a/usr.bin/locale/locale.c b/usr.bin/locale/locale.c index 2c3e61eb529b..de31eac9497e 100644 --- a/usr.bin/locale/locale.c +++ b/usr.bin/locale/locale.c @@ -40,6 +40,7 @@ #include #include +#include #include #include #include