warnings
This commit is contained in:
parent
1650b12267
commit
135e9127b1
@ -77,10 +77,12 @@ unsigned char collate_substitute_table[UCHAR_MAX + 1][STR_LEN];
|
|||||||
struct collate_st_char_pri collate_char_pri_table[UCHAR_MAX + 1];
|
struct collate_st_char_pri collate_char_pri_table[UCHAR_MAX + 1];
|
||||||
struct collate_st_chain_pri collate_chain_pri_table[TABLE_SIZE];
|
struct collate_st_chain_pri collate_chain_pri_table[TABLE_SIZE];
|
||||||
|
|
||||||
#if _MSC_VER || defined(__MINGW32__) || defined(__CYGWIN__)
|
#if __WINDOWS__
|
||||||
#define isblank(X) isspace(X)
|
#define isblank(X) isspace(X)
|
||||||
|
#ifndef isascii
|
||||||
#define isascii(X) ((unsigned int)(X) < 0177)
|
#define isascii(X) ((unsigned int)(X) < 0177)
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Compare two characters converting collate information
|
* Compare two characters converting collate information
|
||||||
|
@ -175,11 +175,11 @@ init_regexp(void)
|
|||||||
YAP_UserCPredicate("check_regexp", regexp, 7);
|
YAP_UserCPredicate("check_regexp", regexp, 7);
|
||||||
}
|
}
|
||||||
|
|
||||||
#if defined(_WIN32) || defined(__MINGW32__)
|
#if __WINDOWS__
|
||||||
|
|
||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
|
|
||||||
int WINAPI winegexp(HANDLE, DWORD, LPVOID);
|
int WINAPI win_regexp(HANDLE, DWORD, LPVOID);
|
||||||
|
|
||||||
int WINAPI win_regexp(HANDLE hinst, DWORD reason, LPVOID reserved)
|
int WINAPI win_regexp(HANDLE hinst, DWORD reason, LPVOID reserved)
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user