summaryrefslogtreecommitdiffstats
path: root/lib/libc/gen/errlist.c
diff options
context:
space:
mode:
authorjasper <jasper@openbsd.org>2009-10-26 21:09:33 +0000
committerjasper <jasper@openbsd.org>2009-10-26 21:09:33 +0000
commitec32666053187384e10cef116fe6acd8f7923928 (patch)
tree15f81572f2251908d6101b598391059b2fd1e19d /lib/libc/gen/errlist.c
parentAdd man pages for the fdim/fmin/fmax family of functions and make sure fdiml (diff)
downloadwireguard-openbsd-ec32666053187384e10cef116fe6acd8f7923928.tar.xz
wireguard-openbsd-ec32666053187384e10cef116fe6acd8f7923928.zip
add ENOTSUP and bump libc minor
discussed with a few ok deraadt@
Diffstat (limited to 'lib/libc/gen/errlist.c')
-rw-r--r--lib/libc/gen/errlist.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libc/gen/errlist.c b/lib/libc/gen/errlist.c
index 43b86d96c96..0c14fb1ed58 100644
--- a/lib/libc/gen/errlist.c
+++ b/lib/libc/gen/errlist.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: errlist.c,v 1.12 2007/09/03 14:37:52 millert Exp $ */
+/* $OpenBSD: errlist.c,v 1.13 2009/10/26 21:09:33 jasper Exp $ */
/*
* Copyright (c) 1982, 1985, 1993
* The Regents of the University of California. All rights reserved.
@@ -144,5 +144,6 @@ const char *const
"Operation canceled", /* 88 - ECANCELED */
"Identifier removed", /* 89 - EIDRM */
"No message of desired type", /* 90 - ENOMSG */
+ "Operation not supported", /* 91 - ENOTSUP */
};
int _sys_nerr = { sizeof _sys_errlist/sizeof _sys_errlist[0] };