mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-18 12:29:32 +08:00
Committed as obvious.
[mingw-Bugs-1801641] * include/wchar.h (_wfdopen): Const-ify second arg. * include/stdio.h (_wfdopen): Likewise. Thanks to <tdragon at users dot sourceforge net>
This commit is contained in:
parent
bc089f5083
commit
e161debaba
@ -1,3 +1,10 @@
|
|||||||
|
2008-06-14 Danny Smith <dannysmith@users.sourceforge.net>
|
||||||
|
|
||||||
|
[mingw-Bugs-1801641]
|
||||||
|
* include/wchar.h (_wfdopen): Const-ify second arg.
|
||||||
|
* include/stdio.h (_wfdopen): Likewise.
|
||||||
|
Thanks to <tdragon at users dot sourceforge net>
|
||||||
|
|
||||||
2008-06-02 Keith Marshall <keithmarshall@users.sourceforge.net>
|
2008-06-02 Keith Marshall <keithmarshall@users.sourceforge.net>
|
||||||
|
|
||||||
Avoid precision errors in round(), lround() and llround() functions.
|
Avoid precision errors in round(), lround() and llround() functions.
|
||||||
|
@ -464,7 +464,7 @@ _CRTIMP wchar_t* __cdecl __MINGW_NOTHROW _getws (wchar_t*);
|
|||||||
_CRTIMP wint_t __cdecl __MINGW_NOTHROW putwc (wint_t, FILE*);
|
_CRTIMP wint_t __cdecl __MINGW_NOTHROW putwc (wint_t, FILE*);
|
||||||
_CRTIMP int __cdecl __MINGW_NOTHROW _putws (const wchar_t*);
|
_CRTIMP int __cdecl __MINGW_NOTHROW _putws (const wchar_t*);
|
||||||
_CRTIMP wint_t __cdecl __MINGW_NOTHROW putwchar (wint_t);
|
_CRTIMP wint_t __cdecl __MINGW_NOTHROW putwchar (wint_t);
|
||||||
_CRTIMP FILE* __cdecl __MINGW_NOTHROW _wfdopen(int, wchar_t *);
|
_CRTIMP FILE* __cdecl __MINGW_NOTHROW _wfdopen(int, const wchar_t *);
|
||||||
_CRTIMP FILE* __cdecl __MINGW_NOTHROW _wfopen (const wchar_t*, const wchar_t*);
|
_CRTIMP FILE* __cdecl __MINGW_NOTHROW _wfopen (const wchar_t*, const wchar_t*);
|
||||||
_CRTIMP FILE* __cdecl __MINGW_NOTHROW _wfreopen (const wchar_t*, const wchar_t*, FILE*);
|
_CRTIMP FILE* __cdecl __MINGW_NOTHROW _wfreopen (const wchar_t*, const wchar_t*, FILE*);
|
||||||
_CRTIMP FILE* __cdecl __MINGW_NOTHROW _wfsopen (const wchar_t*, const wchar_t*, int);
|
_CRTIMP FILE* __cdecl __MINGW_NOTHROW _wfsopen (const wchar_t*, const wchar_t*, int);
|
||||||
|
@ -125,7 +125,7 @@ _CRTIMP wint_t __cdecl __MINGW_NOTHROW putwchar (wint_t);
|
|||||||
#ifndef __STRICT_ANSI__
|
#ifndef __STRICT_ANSI__
|
||||||
_CRTIMP wchar_t* __cdecl __MINGW_NOTHROW _getws (wchar_t*);
|
_CRTIMP wchar_t* __cdecl __MINGW_NOTHROW _getws (wchar_t*);
|
||||||
_CRTIMP int __cdecl __MINGW_NOTHROW _putws (const wchar_t*);
|
_CRTIMP int __cdecl __MINGW_NOTHROW _putws (const wchar_t*);
|
||||||
_CRTIMP FILE* __cdecl __MINGW_NOTHROW _wfdopen(int, wchar_t *);
|
_CRTIMP FILE* __cdecl __MINGW_NOTHROW _wfdopen(int, const wchar_t *);
|
||||||
_CRTIMP FILE* __cdecl __MINGW_NOTHROW _wfopen (const wchar_t*, const wchar_t*);
|
_CRTIMP FILE* __cdecl __MINGW_NOTHROW _wfopen (const wchar_t*, const wchar_t*);
|
||||||
_CRTIMP FILE* __cdecl __MINGW_NOTHROW _wfreopen (const wchar_t*, const wchar_t*, FILE*);
|
_CRTIMP FILE* __cdecl __MINGW_NOTHROW _wfreopen (const wchar_t*, const wchar_t*, FILE*);
|
||||||
_CRTIMP FILE* __cdecl __MINGW_NOTHROW _wfsopen (const wchar_t*, const wchar_t*, int);
|
_CRTIMP FILE* __cdecl __MINGW_NOTHROW _wfsopen (const wchar_t*, const wchar_t*, int);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user