diff options
| author | Poul-Henning Kamp <phk@FreeBSD.org> | 1999-04-24 18:28:24 +0000 |
|---|---|---|
| committer | Poul-Henning Kamp <phk@FreeBSD.org> | 1999-04-24 18:28:24 +0000 |
| commit | 00c7dcf63e85bf6bf756e3837ac27f2ab5d0c8b8 (patch) | |
| tree | 09df123bf380a070a045081f74f48e74348d9519 /lib/libc | |
| parent | 1977ff8efc0bdd3504eaf8802fdcf2ea5e8fd276 (diff) | |
Notes
Diffstat (limited to 'lib/libc')
| -rw-r--r-- | lib/libc/gen/errlst.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/libc/gen/errlst.c b/lib/libc/gen/errlst.c index cd7e7198b46d..a64379416675 100644 --- a/lib/libc/gen/errlst.c +++ b/lib/libc/gen/errlst.c @@ -136,6 +136,13 @@ const char *const sys_errlist[] = { "No locks available", /* 77 - ENOLCK */ "Function not implemented", /* 78 - ENOSYS */ "Inappropriate file type or format", /* 79 - EFTYPE */ + "Authentication error", /* 80 - EAUTH */ + "Need authenticator", /* 81 - ENEEDAUTH */ + "Identifier removed", /* 82 - EIDRM */ + "No message of desired type", /* 83 - ENOMSG */ + "Value too large to be stored in data type", /* 84 - EOVERFLOW */ + "Operation canceled", /* 85 - ECANCELED */ + "Illegal byte sequence", /* 86 - EILSEQ */ }; int errno; const int sys_nerr = sizeof(sys_errlist) / sizeof(sys_errlist[0]); |
