From 57ab67de6be56aa0cb657eb5573f7a9406822e16 Mon Sep 17 00:00:00 2001 From: unknown Date: Fri, 17 Jan 2003 12:35:47 +0400 Subject: ctype-utf8.c: Workaround for platforms which don't support EILSEQ strings/ctype-utf8.c: Workaround for platforms which don't support EILSEQ --- strings/ctype-utf8.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'strings') diff --git a/strings/ctype-utf8.c b/strings/ctype-utf8.c index e57f35bab19..4a99d7465a7 100644 --- a/strings/ctype-utf8.c +++ b/strings/ctype-utf8.c @@ -23,6 +23,10 @@ #include "m_ctype.h" #include +#ifndef EILSEQ +#define EILSEQ ENOENT +#endif + #ifdef HAVE_CHARSET_utf8 #define HAVE_UNIDATA #endif -- cgit v1.2.1