diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2007-03-18 15:27:54 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2007-03-18 15:27:54 +0000 |
commit | e34e0e89862b59b274755b5595c64a5989dae0c4 (patch) | |
tree | 1dd001b228bcef76bb3920caf7d49c1d3ee9b30f | |
parent | e1a95c3fd1616145288f44917f513495ddb85829 (diff) |
unwrap EILSEQ
okay millert@
-rw-r--r-- | sys/sys/errno.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/sys/errno.h b/sys/sys/errno.h index 3b29a00703f..4b0c7ef70ee 100644 --- a/sys/sys/errno.h +++ b/sys/sys/errno.h @@ -1,4 +1,4 @@ -/* $OpenBSD: errno.h,v 1.17 2006/08/04 21:35:51 beck Exp $ */ +/* $OpenBSD: errno.h,v 1.18 2007/03/18 15:27:53 espie Exp $ */ /* $NetBSD: errno.h,v 1.10 1996/01/20 01:33:53 jtc Exp $ */ /* @@ -156,7 +156,9 @@ #define ENEEDAUTH 81 /* Need authenticator */ #define EIPSEC 82 /* IPsec processing failure */ #define ENOATTR 83 /* Attribute not found */ +#endif #define EILSEQ 84 /* Illegal byte sequence */ +#if __BSD_VISIBLE #define ENOMEDIUM 85 /* No medium found */ #define EMEDIUMTYPE 86 /* Wrong Medium Type */ #define ELAST 86 /* Must be equal largest errno */ |