diff options
author | Danny Smith <dannysmith@users.sourceforge.net> | 2005-02-25 08:15:46 +0000 |
---|---|---|
committer | Danny Smith <dannysmith@users.sourceforge.net> | 2005-02-25 08:15:46 +0000 |
commit | 078f08b81a6e4e1b840260d19fe399fbf39ef38c (patch) | |
tree | ebff7a10e75c00f0fb4750719115a3ff4b3d2be6 /winsup/mingw | |
parent | b7c201d5883435e51e30921eaa07bfd091b885db (diff) | |
download | cygnal-078f08b81a6e4e1b840260d19fe399fbf39ef38c.tar.gz cygnal-078f08b81a6e4e1b840260d19fe399fbf39ef38c.tar.bz2 cygnal-078f08b81a6e4e1b840260d19fe399fbf39ef38c.zip |
* include/wctype.h (wctrans) Remove _CRTIMP.
(towctrans): Likewise.
(wctype): Likewise,
Diffstat (limited to 'winsup/mingw')
-rw-r--r-- | winsup/mingw/ChangeLog | 8 | ||||
-rw-r--r-- | winsup/mingw/include/wctype.h | 6 |
2 files changed, 10 insertions, 4 deletions
diff --git a/winsup/mingw/ChangeLog b/winsup/mingw/ChangeLog index 1cfab64a3..b29a3b9f3 100644 --- a/winsup/mingw/ChangeLog +++ b/winsup/mingw/ChangeLog @@ -1,5 +1,11 @@ 2005-02-25 Danny Smith <dannysmith@users.sourceforge.net> + * include/wctype.h (wctrans): Remove _CRTIMP. + (towctrans): Likewise. + (wctype): Likewise, + +2005-02-25 Danny Smith <dannysmith@users.sourceforge.net> + * include/wctype.h: Add comment on wctrans, towctrans, wctype. 2005-02-25 Danny Smith <dannysmith@users.sourceforge.net> @@ -15,7 +21,7 @@ 2005-02-11 Danny Smith <dannysmith@users.sourceforge.net> - * include/assert.h; Remove header guard. #undef assert macro. + * include/assert.h: Remove header guard. #undef assert macro. (_assert): Use __MINGW_ATTRIB_NORETURN define. 2005-02-11 Gregory W. Chicares <chicares@cox.net> diff --git a/winsup/mingw/include/wctype.h b/winsup/mingw/include/wctype.h index 07c433e73..533163e04 100644 --- a/winsup/mingw/include/wctype.h +++ b/winsup/mingw/include/wctype.h @@ -136,9 +136,9 @@ typedef wchar_t wctrans_t; for a valid string descriptor. If you want the MS behaviour (and you have msvcp60.dll in your path) add -lmsvcp60 to your command line. */ -_CRTIMP wint_t __cdecl towctrans(wint_t, wctrans_t); -_CRTIMP wctrans_t __cdecl wctrans(const char*); -_CRTIMP wctype_t __cdecl wctype(const char*); +wint_t __cdecl towctrans(wint_t, wctrans_t); +wctrans_t __cdecl wctrans(const char*); +wctype_t __cdecl wctype(const char*); #ifdef __cplusplus } |