* libc/include/sys/errno.h: Add EOVERFLOW.

This commit is contained in:
Corinna Vinschen 2002-09-24 14:10:12 +00:00
parent 6b579509ea
commit 06f1353ae8
2 changed files with 5 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2002-09-24 Corinna Vinschen <corinna@vinschen.de>
* libc/include/sys/errno.h: Add EOVERFLOW.
2002-09-20 Jeff Johnston <jjohnstn@redhat.com> 2002-09-20 Jeff Johnston <jjohnstn@redhat.com>
* libc/include/wctype.h: New file. * libc/include/wctype.h: New file.

View File

@ -147,6 +147,7 @@ extern __IMPORT int sys_nerr;
#define ENOSHARE 136 /* No such host or network path */ #define ENOSHARE 136 /* No such host or network path */
#define ECASECLASH 137 /* Filename exists with different case */ #define ECASECLASH 137 /* Filename exists with different case */
#define EILSEQ 138 #define EILSEQ 138
#define EOVERFLOW 139 /* Value too large for defined data type */
/* From cygwin32. */ /* From cygwin32. */
#define EWOULDBLOCK EAGAIN /* Operation would block */ #define EWOULDBLOCK EAGAIN /* Operation would block */