8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 23:23:04 +01:00

Be sure to include limits.h if we are using INT_MAX

This commit is contained in:
paul_reeves 2008-03-14 10:51:43 +00:00
parent 628ad701c1
commit 82b8eaccb9

View File

@ -26,6 +26,11 @@
#include "../intl/ldcommon.h" #include "../intl/ldcommon.h"
#include "ld_proto.h" #include "ld_proto.h"
#ifdef WIN_NT
#include <limits.h>
#endif
static ULONG fam2_str_to_upper(TEXTTYPE obj, ULONG iLen, const BYTE* pStr, ULONG iOutLen, BYTE *pOutStr); static ULONG fam2_str_to_upper(TEXTTYPE obj, ULONG iLen, const BYTE* pStr, ULONG iOutLen, BYTE *pOutStr);
static ULONG fam2_str_to_lower(TEXTTYPE obj, ULONG iLen, const BYTE* pStr, ULONG iOutLen, BYTE *pOutStr); static ULONG fam2_str_to_lower(TEXTTYPE obj, ULONG iLen, const BYTE* pStr, ULONG iOutLen, BYTE *pOutStr);