mirror of git://git.musl-libc.org/musl
fix unprotected macro argument in sys/ttydefaults.h
This commit is contained in:
parent
ff5b8ad386
commit
a0217a2ff7
|
@ -6,7 +6,7 @@
|
|||
#define TTYDEF_LFLAG (ECHO | ICANON | ISIG | IEXTEN | ECHOE|ECHOKE|ECHOCTL)
|
||||
#define TTYDEF_CFLAG (CREAD | CS7 | PARENB | HUPCL)
|
||||
#define TTYDEF_SPEED (B9600)
|
||||
#define CTRL(x) (x&037)
|
||||
#define CTRL(x) ((x)&037)
|
||||
#define CEOF CTRL('d')
|
||||
|
||||
#ifdef _POSIX_VDISABLE
|
||||
|
|
Loading…
Reference in New Issue