Wed Apr 24 00:22:42 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>

* wcsmbs/wcsrtombs.c [! EILSEQ] (EILSEQ): Define to EINVAL.
	* wcsmbs/wcrtomb.c: Likewise.
This commit is contained in:
Roland McGrath 1996-04-24 05:28:34 +00:00
parent e0637da1c7
commit 80bcb41041
2 changed files with 7 additions and 0 deletions

View File

@ -20,6 +20,9 @@ Boston, MA 02111-1307, USA. */
#include <errno.h>
#include <wchar.h>
#ifndef EILSEQ
#define EILSEQ EINVAL
#endif
size_t
wcrtomb (s, wc, ps)

View File

@ -20,6 +20,10 @@ Boston, MA 02111-1307, USA. */
#include <errno.h>
#include <wchar.h>
#ifndef EILSEQ
#define EILSEQ EINVAL
#endif
size_t
wcsrtombs (dst, src, len, ps)