* errno.cc (_sys_errlist): Add ESTRPIPE.

This commit is contained in:
Corinna Vinschen
2009-03-15 13:46:56 +00:00
parent 19b3c04bb0
commit 99438c631a
2 changed files with 6 additions and 1 deletions

View File

@@ -287,7 +287,8 @@ const char *_sys_errlist[] NO_COPY_INIT =
/* EOVERFLOW 139 */ "Value too large for defined data type",
/* ECANCELED 140 */ "Operation canceled",
/* ENOTRECOVERABLE 141 */ "State not recoverable",
/* EOWNERDEAD 142 */ "Previous owner died"
/* EOWNERDEAD 142 */ "Previous owner died",
/* ESTRPIPE 143 */ "Streams pipe error"
};
int NO_COPY_INIT _sys_nerr = sizeof (_sys_errlist) / sizeof (_sys_errlist[0]);