diff options
author | Danny Smith <dannysmith@users.sourceforge.net> | 2007-06-28 07:13:04 +0000 |
---|---|---|
committer | Danny Smith <dannysmith@users.sourceforge.net> | 2007-06-28 07:13:04 +0000 |
commit | a4b5a24055334025e399b3d1b06985a39beeaa84 (patch) | |
tree | 3ab412552d90369332bad26945637f2ea848a056 /winsup/mingw/msvcrt.def.in | |
parent | 41391cb2bba626aeb1e6ab7f65eb87eec6f93f1a (diff) | |
download | newlib-a4b5a24055334025e399b3d1b06985a39beeaa84.zip newlib-a4b5a24055334025e399b3d1b06985a39beeaa84.tar.gz newlib-a4b5a24055334025e399b3d1b06985a39beeaa84.tar.bz2 |
* msvcrt.def.in: Update comment.
Exclude _ctype stub if using msvcr71.dll or newer.
* include/ctype.h: Don't declare _ctype if using msvcr71.dll or newer.
* include/wctype.h: Likewise.
Diffstat (limited to 'winsup/mingw/msvcrt.def.in')
-rw-r--r-- | winsup/mingw/msvcrt.def.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/winsup/mingw/msvcrt.def.in b/winsup/mingw/msvcrt.def.in index 9aa9229..edac445 100644 --- a/winsup/mingw/msvcrt.def.in +++ b/winsup/mingw/msvcrt.def.in @@ -5,7 +5,7 @@ ;* This file is a part of the mingw-runtime package. ;* No warranty is given; refer to the file DISCLAIMER within the package. ; -; Exports from msvcrt.dll, msvcr70.dll and msvcr71.dll +; Exports from msvcrt.dll, msvcr70.dll, msvcr71.dll and msvcr80.dll ; ; NOTE: All exports, except for what appeared to be C++ mangled names, ; are included. Not all functions have prototypes in the headers @@ -148,7 +148,9 @@ _cprintf _cputs _creat _cscanf +#if !(__msvcr71__ || __msvcr71d__ || __msvcr80__ || __msvcr80d__) _ctype DATA +#endif _cwait _daylight DATA _dstbias DATA |