Alternatives should be considered (such as changing our keymaps to
better match NetBSD) in due time, but for now, the current default
is incredibly annoying!
Change-Id: I4cab5d6a9f39983ee8aa80362768fdb9cf3db948
#define CTRL(x) (x&037)
#define CEOF CTRL('d')
#define CEOL ((unsigned char)'\377') /* XXX avoid _POSIX_VDISABLE */
+#if defined(__minix)
+#define CERASE CTRL('h')
+#else
#define CERASE 0177
+#endif /* defined(__minix) */
#define CINTR CTRL('c')
#define CSTATUS CTRL('t')
#define CKILL CTRL('u')