diff mbox series

mbstowcs: Remove outdated comment

Message ID 20180813114907.C35B1401DCCD0@oldenburg.str.redhat.com
State New
Headers show
Series mbstowcs: Remove outdated comment | expand

Commit Message

Florian Weimer Aug. 13, 2018, 11:49 a.m. UTC
ISO C requires that there is no effect on any global conversion state,
so the change in commit 9f097308c7465443765d1e25699a4cf33eff5455 was
correct.

2018-08-13  Florian Weimer  <fweimer@redhat.com>

	* stdlib/mbstowcs.c (mbstowcs): Remove outdated comment.

Comments

Andreas Schwab Aug. 13, 2018, noon UTC | #1
On Aug 13 2018, fweimer@redhat.com (Florian Weimer) wrote:

> ISO C requires that there is no effect on any global conversion state,
> so the change in commit 9f097308c7465443765d1e25699a4cf33eff5455 was
> correct.

If you disregard the typos in it...

> 	* stdlib/mbstowcs.c (mbstowcs): Remove outdated comment.

Ok.

Andreas.
diff mbox series

Patch

diff --git a/stdlib/mbstowcs.c b/stdlib/mbstowcs.c
index 5bc77a2ea2..d8b91a73de 100644
--- a/stdlib/mbstowcs.c
+++ b/stdlib/mbstowcs.c
@@ -22,12 +22,7 @@ 
 
 /* Convert the string of multibyte characters in S to `wchar_t's in
    PWCS, writing no more than N.  Return the number written,
-   or (size_t) -1 if an invalid multibyte character is encountered.
-
-   Attention: this function should NEVER be intentionally used.
-   The interface is completely stupid.  The state is shared between
-   all conversion functions.  You should use instead the restartable
-   version `mbsrtowcs'.  */
+   or (size_t) -1 if an invalid multibyte character is encountered.  */
 size_t
 mbstowcs (wchar_t *pwcs, const char *s, size_t n)
 {