blob: 45cb2c41dc4b0ba9d02ea7b0167e35c913fecb40 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include <errno.h>
#define EILSEQ (3)
/** illegal sequence **/
/***
is used to indicate that an incorrect sequence of bytes was encountered when
transforming a multi-byte character into a wide character.
***/
/*
STDC(199409)
*/
|