From 010819d5045c3297a0ff2dece45af2e90b17ace5 Mon Sep 17 00:00:00 2001 From: Juan Manuel Guerrero Date: Sun, 27 Aug 2017 18:32:36 +0300 Subject: Fix the DJGPP port. --- support/ChangeLog | 4 ++++ support/localeinfo.c | 4 ++++ 2 files changed, 8 insertions(+) (limited to 'support') diff --git a/support/ChangeLog b/support/ChangeLog index bc535ea8..5a9f5e93 100644 --- a/support/ChangeLog +++ b/support/ChangeLog @@ -1,3 +1,7 @@ +2017-08-27 Juan Manuel Guerrero + + * localeinfo.c [__DJGPP__]: Include mbsupport.h. + 2017-06-25 Andrew J. Schorr * dfa.c (dfaalloc): Replace xmalloc+memset with xzalloc. diff --git a/support/localeinfo.c b/support/localeinfo.c index ece679e3..4d77ec27 100644 --- a/support/localeinfo.c +++ b/support/localeinfo.c @@ -31,6 +31,10 @@ #include #include +#if defined(__DJGPP__) +#include "mbsupport.h" +#endif + /* The sbclen implementation relies on this. */ verify (MB_LEN_MAX <= SCHAR_MAX); -- cgit v1.2.3