From 6699fabb916055563b105cda4d0789e862c0760a Mon Sep 17 00:00:00 2001 From: Jeff Johnston Date: Fri, 2 Feb 2007 16:22:28 +0000 Subject: [PATCH] =?UTF-8?q?2007-02-02=20=20Ralf=20Cors=C3=A9pius=20?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * libc/include/sys/errno.h: Add ECANCELED. --- newlib/ChangeLog | 4 ++++ newlib/libc/include/sys/errno.h | 1 + 2 files changed, 5 insertions(+) diff --git a/newlib/ChangeLog b/newlib/ChangeLog index 740f7a118..7df0807d3 100644 --- a/newlib/ChangeLog +++ b/newlib/ChangeLog @@ -1,3 +1,7 @@ +2007-02-02 Ralf Corsépius + + * libc/include/sys/errno.h: Add ECANCELED. + 2007-02-01 Joel Schopp Kazunori Asayama diff --git a/newlib/libc/include/sys/errno.h b/newlib/libc/include/sys/errno.h index e0c43de9d..1721ef4c8 100644 --- a/newlib/libc/include/sys/errno.h +++ b/newlib/libc/include/sys/errno.h @@ -148,6 +148,7 @@ extern __IMPORT int sys_nerr; #define ECASECLASH 137 /* Filename exists with different case */ #define EILSEQ 138 #define EOVERFLOW 139 /* Value too large for defined data type */ +#define ECANCELED 140 /* Operation canceled. */ /* From cygwin32. */ #define EWOULDBLOCK EAGAIN /* Operation would block */