diff options
author | Danny Smith <dannysmith@users.sourceforge.net> | 2008-07-07 07:58:33 +0000 |
---|---|---|
committer | Danny Smith <dannysmith@users.sourceforge.net> | 2008-07-07 07:58:33 +0000 |
commit | 6f6b4e11cbaa9eeea5c8375cb97b789336550629 (patch) | |
tree | fa7ad0a31b132d562bc0cdc45d82706b3f20af81 | |
parent | 4261a8d107969b02adac3b1bc01cbd475cb02b6b (diff) | |
download | cygnal-6f6b4e11cbaa9eeea5c8375cb97b789336550629.tar.gz cygnal-6f6b4e11cbaa9eeea5c8375cb97b789336550629.tar.bz2 cygnal-6f6b4e11cbaa9eeea5c8375cb97b789336550629.zip |
2008-07-06 Gregory McGarry <gregorymcgarry@users.sourceforge.net>
* include/ctype.h (_imp____mb_cur_max): Correct spelling.
(_imp____mb_cur_max_dll): Likewise.
-rw-r--r-- | winsup/mingw/ChangeLog | 5 | ||||
-rw-r--r-- | winsup/mingw/include/ctype.h | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/winsup/mingw/ChangeLog b/winsup/mingw/ChangeLog index 6c03c9b01..710e217c9 100644 --- a/winsup/mingw/ChangeLog +++ b/winsup/mingw/ChangeLog @@ -1,3 +1,8 @@ +2008-07-06 Gregory McGarry <gregorymcgarry@users.sourceforge.net> + + * include/ctype.h (_imp____mb_cur_max): Correct spelling. + (_imp____mb_cur_max_dll): Likewise. + 2008-07-04 Danny Smith <dannysmith@users,sourceforge.net> * include/stdio.h (swprintf, vswprintf): Guard with #ifndef __STRICT_ANSI__ diff --git a/winsup/mingw/include/ctype.h b/winsup/mingw/include/ctype.h index 4c094eb12..551566bc4 100644 --- a/winsup/mingw/include/ctype.h +++ b/winsup/mingw/include/ctype.h @@ -33,7 +33,7 @@ #define _CONTROL 0x0020 /* _BLANK is set for SP and non-ASCII horizontal space chars (eg, "no-break space", 0xA0, in CP1250) but not for HT. */ -#define _BLANK 0x0040 +#define _BLANK 0x0040 #define _HEX 0x0080 #define _LEADBYTE 0x8000 @@ -97,10 +97,10 @@ _CRTIMP int __cdecl __MINGW_NOTHROW _toupper(int); #else /* ! __DECLSPEC_SUPPORTED */ # ifdef __MSVCRT__ - extern int* _imp____mbcur_max; + extern int* _imp____mb_cur_max; # define MB_CUR_MAX (*_imp____mb_cur_max) # else /* not __MSVCRT */ - extern int* _imp____mbcur_max_dll; + extern int* _imp____mb_cur_max_dll; # define MB_CUR_MAX (*_imp____mb_cur_max_dll) # endif /* not __MSVCRT */ #endif /* __DECLSPEC_SUPPORTED */ |