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

Some fixes including implicit declaration of a function,

using wrong type in assignment etc.
This commit is contained in:
jani@ua141d10.elisa.omakaista.fi
2005-10-04 18:20:57 +03:00
parent fa2bbce5fa
commit 17e87da298
5 changed files with 33 additions and 3 deletions

View File

@ -24,6 +24,12 @@
#include "config_readline.h"
#include <sys/types.h>
/* To get SuSE 9.3 to define wcwidth() (in wchar.h) */
#ifndef __USE_XOPEN
#define __USE_XOPEN
#endif
#include <fcntl.h>
#include "posixjmp.h"
@ -44,6 +50,10 @@
#include "rldefs.h"
#include "rlmbutil.h"
#ifdef HAVE_WCHAR_H
#include <wchar.h>
#endif
#if defined (TIOCSTAT_IN_SYS_IOCTL)
# include <sys/ioctl.h>
#endif /* TIOCSTAT_IN_SYS_IOCTL */