diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2002-09-24 14:10:12 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2002-09-24 14:10:12 +0000 |
commit | 06f1353ae8c39c038218738e47a82c35f4abfc80 (patch) | |
tree | 891fb55de5b90835b796466751f59e35e33f972d | |
parent | 6b579509ea85b0e5dac7b389dae1776d3c5f38d0 (diff) | |
download | newlib-06f1353ae8c39c038218738e47a82c35f4abfc80.zip newlib-06f1353ae8c39c038218738e47a82c35f4abfc80.tar.gz newlib-06f1353ae8c39c038218738e47a82c35f4abfc80.tar.bz2 |
* libc/include/sys/errno.h: Add EOVERFLOW.
-rw-r--r-- | newlib/ChangeLog | 4 | ||||
-rw-r--r-- | newlib/libc/include/sys/errno.h | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/newlib/ChangeLog b/newlib/ChangeLog index 3c8fd3b..7c6458e 100644 --- a/newlib/ChangeLog +++ b/newlib/ChangeLog @@ -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> * libc/include/wctype.h: New file. diff --git a/newlib/libc/include/sys/errno.h b/newlib/libc/include/sys/errno.h index f88d563..e0c43de 100644 --- a/newlib/libc/include/sys/errno.h +++ b/newlib/libc/include/sys/errno.h @@ -147,6 +147,7 @@ extern __IMPORT int sys_nerr; #define ENOSHARE 136 /* No such host or network path */ #define ECASECLASH 137 /* Filename exists with different case */ #define EILSEQ 138 +#define EOVERFLOW 139 /* Value too large for defined data type */ /* From cygwin32. */ #define EWOULDBLOCK EAGAIN /* Operation would block */ |