msvcrt: Added EILSEQ definition.
This commit is contained in:
parent
1b69f035e1
commit
4755f8acec
|
@ -437,6 +437,7 @@ struct MSVCRT__stati64 {
|
|||
#define MSVCRT_ENOLCK 39
|
||||
#define MSVCRT_ENOSYS 40
|
||||
#define MSVCRT_ENOTEMPTY 41
|
||||
#define MSVCRT_EILSEQ 42
|
||||
|
||||
#define MSVCRT_LC_ALL 0
|
||||
#define MSVCRT_LC_COLLATE 1
|
||||
|
|
|
@ -355,6 +355,7 @@ static void test_defines(void)
|
|||
CHECK_DEF(ENOLCK);
|
||||
CHECK_DEF(ENOSYS);
|
||||
CHECK_DEF(ENOTEMPTY);
|
||||
CHECK_DEF(EILSEQ);
|
||||
CHECK_DEF(LC_ALL);
|
||||
CHECK_DEF(LC_COLLATE);
|
||||
CHECK_DEF(LC_CTYPE);
|
||||
|
|
|
@ -60,6 +60,7 @@
|
|||
# define ENOLCK 39
|
||||
# define ENOSYS 40
|
||||
# define ENOTEMPTY 41
|
||||
# define EILSEQ 42
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
|
|
Loading…
Reference in New Issue