diff options
author | bar@bar.mysql.r18.ru <> | 2003-06-02 14:12:46 +0500 |
---|---|---|
committer | bar@bar.mysql.r18.ru <> | 2003-06-02 14:12:46 +0500 |
commit | de6ad3abefcc691ea099288275870ae2866108ea (patch) | |
tree | d87a6e24e013833c81cdaf91655e68d18f5363f1 /strings | |
parent | 7b0afa3ae7caa053bdccdf5c5e0d36fe0db642e2 (diff) | |
download | mariadb-git-de6ad3abefcc691ea099288275870ae2866108ea.tar.gz |
ctype-ucs2.c:
define ILSEQ for platforms that do not define it themself
Diffstat (limited to 'strings')
-rw-r--r-- | strings/ctype-ucs2.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/strings/ctype-ucs2.c b/strings/ctype-ucs2.c index 17bc920a381..8cb8f84f281 100644 --- a/strings/ctype-ucs2.c +++ b/strings/ctype-ucs2.c @@ -25,6 +25,10 @@ #ifdef HAVE_CHARSET_ucs2 +#ifndef EILSEQ +#define EILSEQ ENOENT +#endif + extern MY_UNICASE_INFO *uni_plane[256]; static uchar ctype_ucs2[] = { |