diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2000-05-03 15:59:37 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2000-05-03 15:59:37 +0000 |
commit | b96fca8c5a678bb01340ecca488dec364fffecc6 (patch) | |
tree | 0fc1a3c2c4b4543a79f104e2b027c3c6ed4eac75 | |
parent | 1c0c369b36c1ddf4af25052b311a48597b5fdb3f (diff) | |
download | cygnal-b96fca8c5a678bb01340ecca488dec364fffecc6.tar.gz cygnal-b96fca8c5a678bb01340ecca488dec364fffecc6.tar.bz2 cygnal-b96fca8c5a678bb01340ecca488dec364fffecc6.zip |
* libc/include/sys/errno.h: Add define for ENOSHARE ("No such
host or network path") used by cygwin. Add some comments.
-rw-r--r-- | newlib/ChangeLog | 5 | ||||
-rw-r--r-- | newlib/libc/include/sys/errno.h | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/newlib/ChangeLog b/newlib/ChangeLog index e34000fc4..9e7a64f8b 100644 --- a/newlib/ChangeLog +++ b/newlib/ChangeLog @@ -1,3 +1,8 @@ +Wed May 03 17:57:00 2000 Corinna Vinschen <corinna@vinschen.de> + + * libc/include/sys/errno.h: Add define for ENOSHARE ("No such + host or network path") used by cygwin. Add some comments. + Tue May 02 23:45:48 2000 DJ Delorie <dj@cygnus.com> * libc/include/stdio.h (FILE): define __SCLE for "convert line diff --git a/newlib/libc/include/sys/errno.h b/newlib/libc/include/sys/errno.h index 0247fa232..6d85d49a9 100644 --- a/newlib/libc/include/sys/errno.h +++ b/newlib/libc/include/sys/errno.h @@ -141,7 +141,8 @@ extern int _sys_nerr __declspec(dllimport); #define EDQUOT 132 #define ESTALE 133 #define ENOTSUP 134 -#define ENOMEDIUM 135 +#define ENOMEDIUM 135 /* No medium (in tape drive) */ +#define ENOSHARE 136 /* No such host or network path */ /* From cygwin32. */ #define EWOULDBLOCK EAGAIN /* Operation would block */ |