mirror of git://sourceware.org/git/glibc.git
ttydefaults.h: Fix CSTATUS to control-t
4.4BSD actually defaults CSTATUS to control-t, so our generic header should as well.
This commit is contained in:
parent
e5fa62b8db
commit
d5b0046e3d
|
@ -61,11 +61,7 @@
|
||||||
#endif
|
#endif
|
||||||
#define CERASE 0177
|
#define CERASE 0177
|
||||||
#define CINTR CTRL('c')
|
#define CINTR CTRL('c')
|
||||||
#ifdef _POSIX_VDISABLE
|
#define CSTATUS CTRL('t')
|
||||||
# define CSTATUS _POSIX_VDISABLE
|
|
||||||
#else
|
|
||||||
# define CSTATUS ((unsigned char)'\377') /* XXX avoid _POSIX_VDISABLE */
|
|
||||||
#endif
|
|
||||||
#define CKILL CTRL('u')
|
#define CKILL CTRL('u')
|
||||||
#define CMIN 1
|
#define CMIN 1
|
||||||
#define CQUIT 034 /* FS, ^\ */
|
#define CQUIT 034 /* FS, ^\ */
|
||||||
|
|
Loading…
Reference in New Issue