diff options
Diffstat (limited to 'sys/dev/wscons')
-rw-r--r-- | sys/dev/wscons/ascii.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/wscons/ascii.h b/sys/dev/wscons/ascii.h index 4088f5f6476..55fd11a1bfe 100644 --- a/sys/dev/wscons/ascii.h +++ b/sys/dev/wscons/ascii.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ascii.h,v 1.5 2009/01/12 20:43:53 miod Exp $ */ +/* $OpenBSD: ascii.h,v 1.6 2017/05/27 12:00:28 fcambus Exp $ */ /* $NetBSD: ascii.h,v 1.3 1998/06/20 19:11:04 drochner Exp $ */ #define ASCII_NUL 0x00 /* nul */ @@ -11,6 +11,6 @@ #define ASCII_CR 0x0d /* carriage return */ #define ASCII_SO 0x0e /* shift out */ #define ASCII_SI 0x0f /* shift in */ -#define ASCII_CAN 0x18 -#define ASCII_SUB 0x1a +#define ASCII_CAN 0x18 /* cancel */ +#define ASCII_SUB 0x1a /* substitute */ #define ASCII_ESC 0x1b /* escape */ |