1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Build fixes for Windows, AIX, HP/UX and Sun Studio11, from Timothy Smith.

This commit is contained in:
Jonathan Perkin
2009-08-14 17:18:52 +02:00
parent 00eec234ee
commit a162954858
4 changed files with 20 additions and 11 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;