Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--winsup/mingw/ChangeLog6
-rw-r--r--winsup/mingw/include/tchar.h4
2 files changed, 8 insertions, 2 deletions
diff --git a/winsup/mingw/ChangeLog b/winsup/mingw/ChangeLog
index 0692635e9..35e99f3e1 100644
--- a/winsup/mingw/ChangeLog
+++ b/winsup/mingw/ChangeLog
@@ -1,3 +1,9 @@
+2002-06-19 Danny Smith <dannysmith@users.sourceforge.net>
+
+ * include/tchar.h (_getts): Define as _getws for _UNICODE.
+ (_putts): Define as _putws for _UNICODE.
+ Thanks to: Tomasz Pona <cochisek@poczta.onet.pl> for report.
+
2002-06-18 Danny Smith <dannysmith@users.sourceforge.net>
* include/float.h: #include_next<float.h> before header guard.
diff --git a/winsup/mingw/include/tchar.h b/winsup/mingw/include/tchar.h
index 7ab12c29a..6684d6b45 100644
--- a/winsup/mingw/include/tchar.h
+++ b/winsup/mingw/include/tchar.h
@@ -98,9 +98,9 @@ typedef wchar_t _TCHAR;
#define _fputtchar _fputwchar
#define _fputts fputws
#define _gettc getwc
-#define _getts getws
+#define _getts _getws
#define _puttc putwc
-#define _putts putws
+#define _putts _putws
#define _ungettc ungetwc
#define _tcstod wcstod
#define _tcstol wcstol