diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2007-09-03 14:37:53 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2007-09-03 14:37:53 +0000 |
commit | d5cabb42a1a17d02ebac157f110b3835dbc64959 (patch) | |
tree | e29a639148812cd232019f9cc12938ad6312e245 /sys | |
parent | 166c3541d324a24a53c683fea45c202fa80e9a06 (diff) |
Add ENOMSG and EIDRM; from jsg@
Diffstat (limited to 'sys')
-rw-r--r-- | sys/sys/errno.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/sys/sys/errno.h b/sys/sys/errno.h index 74a815ab3e0..8a31e88d594 100644 --- a/sys/sys/errno.h +++ b/sys/sys/errno.h @@ -1,4 +1,4 @@ -/* $OpenBSD: errno.h,v 1.19 2007/05/21 17:01:49 jasper Exp $ */ +/* $OpenBSD: errno.h,v 1.20 2007/09/03 14:37:52 millert Exp $ */ /* $NetBSD: errno.h,v 1.10 1996/01/20 01:33:53 jtc Exp $ */ /* @@ -163,7 +163,11 @@ #define EMEDIUMTYPE 86 /* Wrong Medium Type */ #define EOVERFLOW 87 /* Conversion overflow */ #define ECANCELED 88 /* Operation canceled */ -#define ELAST 88 /* Must be equal largest errno */ +#endif /* __BSD_VISIBLE */ +#define EIDRM 89 /* Identifier removed */ +#define ENOMSG 90 /* No message of desired type */ +#if __BSD_VISIBLE +#define ELAST 90 /* Must be equal largest errno */ #endif /* __BSD_VISIBLE */ #ifdef _KERNEL |