提交 a0217a2f 编写于 作者: R Rich Felker

fix unprotected macro argument in sys/ttydefaults.h

上级 ff5b8ad3
......@@ -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
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册