diff options
author | Chris Sutcliffe <ir0nh34d@users.sourceforge.net> | 2010-03-07 03:08:35 +0000 |
---|---|---|
committer | Chris Sutcliffe <ir0nh34d@users.sourceforge.net> | 2010-03-07 03:08:35 +0000 |
commit | a189160220bfa3234ae915777c906a384cc06d35 (patch) | |
tree | 4f3c179631928949fc23dfadd5e79d3a875f7909 | |
parent | c2fd0c7c03c02e4b9c5bc9e6d6c0da5248778a16 (diff) | |
download | cygnal-a189160220bfa3234ae915777c906a384cc06d35.tar.gz cygnal-a189160220bfa3234ae915777c906a384cc06d35.tar.bz2 cygnal-a189160220bfa3234ae915777c906a384cc06d35.zip |
2010-03-02 Daniel Atallah <datallah@users.sourceforge.net>
* include/stdio.h: (_vscprintf, _vscwprintf)
* include/tchar.h: (_vsctprintf)
-rw-r--r-- | winsup/mingw/ChangeLog | 5 | ||||
-rw-r--r-- | winsup/mingw/include/stdio.h | 2 | ||||
-rw-r--r-- | winsup/mingw/include/tchar.h | 2 |
3 files changed, 9 insertions, 0 deletions
diff --git a/winsup/mingw/ChangeLog b/winsup/mingw/ChangeLog index c4c3ecbf7..d2de8e1f6 100644 --- a/winsup/mingw/ChangeLog +++ b/winsup/mingw/ChangeLog @@ -1,3 +1,8 @@ +2010-03-02 Daniel Atallah <datallah@users.sourceforge.net> + + * include/stdio.h: (_vscprintf, _vscwprintf) + * include/tchar.h: (_vsctprintf) + 2010-02-14 Roumen Petrov <rumen@users.sourceforge.net> Issue [2134161]: time64 functions and types for msvcrt >= 8.0 diff --git a/winsup/mingw/include/stdio.h b/winsup/mingw/include/stdio.h index 11a92eac0..d0184c23b 100644 --- a/winsup/mingw/include/stdio.h +++ b/winsup/mingw/include/stdio.h @@ -318,6 +318,7 @@ _CRTIMP int __mingw_stdio_redirect__(vsprintf)(char*, const char*, __VALIST); */ _CRTIMP int __cdecl __MINGW_NOTHROW _snprintf (char*, size_t, const char*, ...); _CRTIMP int __cdecl __MINGW_NOTHROW _vsnprintf (char*, size_t, const char*, __VALIST); +_CRTIMP int __cdecl __MINGW_NOTHROW _vscprintf (const char*, __VALIST); #ifndef __NO_ISOCEXT /* externs in libmingwex.a */ /* @@ -565,6 +566,7 @@ _CRTIMP int __cdecl __MINGW_NOTHROW _snwprintf (wchar_t*, size_t, const wchar_t* _CRTIMP int __cdecl __MINGW_NOTHROW vfwprintf (FILE*, const wchar_t*, __VALIST); _CRTIMP int __cdecl __MINGW_NOTHROW vwprintf (const wchar_t*, __VALIST); _CRTIMP int __cdecl __MINGW_NOTHROW _vsnwprintf (wchar_t*, size_t, const wchar_t*, __VALIST); +_CRTIMP int __cdecl __MINGW_NOTHROW _vscwprintf (const wchar_t*, __VALIST); _CRTIMP int __cdecl __MINGW_NOTHROW fwscanf (FILE*, const wchar_t*, ...); _CRTIMP int __cdecl __MINGW_NOTHROW wscanf (const wchar_t*, ...); _CRTIMP int __cdecl __MINGW_NOTHROW swscanf (const wchar_t*, const wchar_t*, ...); diff --git a/winsup/mingw/include/tchar.h b/winsup/mingw/include/tchar.h index 6170d0491..99858510d 100644 --- a/winsup/mingw/include/tchar.h +++ b/winsup/mingw/include/tchar.h @@ -81,6 +81,7 @@ typedef wchar_t _TCHAR; #define _vftprintf vfwprintf #define _vstprintf vswprintf #define _vsntprintf _vsnwprintf +#define _vsctprintf _vscwprintf #define _tscanf wscanf #define _ftscanf fwscanf #define _stscanf swscanf @@ -298,6 +299,7 @@ typedef char _TCHAR; #define _vftprintf vfprintf #define _vstprintf vsprintf #define _vsntprintf _vsnprintf +#define _vsctprintf _vscprintf #define _tscanf scanf #define _ftscanf fscanf #define _stscanf sscanf |