MySQL 5.1.38 merge into MariaDB.

Merge remaining bits of mysql-5.1.38 into MariaDB (9 commits were missing
from the original merge).
This commit is contained in:
unknown 2009-09-15 14:12:51 +02:00
commit 2a4c97fc3e
8 changed files with 56 additions and 19 deletions

View file

@ -81,8 +81,13 @@ rl_alphabetic (c)
#if defined (HANDLE_MULTIBYTE)
int
_rl_walphabetic (wc)
wchar_t wc;
/*
Portability issue with VisualAge C++ Professional / C for AIX Compiler, Version 6:
"util.c", line 84.1: 1506-343 (S) Redeclaration of _rl_walphabetic differs
from previous declaration on line 110 of "rlmbutil.h".
So, put type in the function signature here.
*/
_rl_walphabetic (wchar_t wc)
{
int c;