summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorespie <espie@openbsd.org>2005-06-17 21:48:03 +0000
committerespie <espie@openbsd.org>2005-06-17 21:48:03 +0000
commita6226a7c8148420009ab7f45ee52f09265428957 (patch)
tree6b0bbf6ad53727939ba3949a5acf9e44c062a5fe
parentno longer a need for the free(malloc(1)) hack, because the brk stuff (diff)
downloadwireguard-openbsd-a6226a7c8148420009ab7f45ee52f09265428957.tar.xz
wireguard-openbsd-a6226a7c8148420009ab7f45ee52f09265428957.zip
forgotten commit.
-rw-r--r--sys/sys/errno.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/sys/errno.h b/sys/sys/errno.h
index 7c360652f07..581341b7610 100644
--- a/sys/sys/errno.h
+++ b/sys/sys/errno.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: errno.h,v 1.13 2005/05/24 03:55:11 millert Exp $ */
+/* $OpenBSD: errno.h,v 1.14 2005/06/17 21:48:03 espie Exp $ */
/* $NetBSD: errno.h,v 1.10 1996/01/20 01:33:53 jtc Exp $ */
/*
@@ -175,7 +175,8 @@ __END_DECLS
#define ENEEDAUTH 81 /* Need authenticator */
#define EIPSEC 82 /* IPsec processing failure */
#define ENOATTR 83 /* Attribute not found */
-#define ELAST 83 /* Must be equal largest errno */
+#define EILSEQ 84 /* Illegal byte sequence */
+#define ELAST 84 /* Must be equal largest errno */
#endif /* _POSIX_SOURCE */
#ifdef _KERNEL