Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(117)

Unified Diff: libraries/glibc-compat/include/sys/termios.h

Issue 13008014: Fixing more errors in sys/termios.h constants (Closed) Base URL: http://naclports.googlecode.com/svn/trunk/src/
Patch Set: rebase Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: libraries/glibc-compat/include/sys/termios.h
===================================================================
--- libraries/glibc-compat/include/sys/termios.h (revision 717)
+++ libraries/glibc-compat/include/sys/termios.h (working copy)
@@ -26,19 +26,21 @@
# define TCSADRAIN _XCSETAW
# define TCSADFLUSH _XCSETAF
-# define IGNBRK 000001
-# define BRKINT 000002
-# define IGNPAR 000004
-# define PARMRK 000010
-# define INPCK 000020
-# define ISTRIP 000040
-# define INLCR 000100
-# define IGNCR 000200
-# define ICRNL 000400
-# define IXON 002000
-# define IXANY 004000
-# define IUTF8 004000
-# define IXOFF 010000
+#define IGNBRK 0000001
+#define BRKINT 0000002
+#define IGNPAR 0000004
+#define PARMRK 0000010
+#define INPCK 0000020
+#define ISTRIP 0000040
+#define INLCR 0000100
+#define IGNCR 0000200
+#define ICRNL 0000400
+#define IUCLC 0001000
+#define IXON 0002000
+#define IXANY 0004000
+#define IXOFF 0010000
+#define IMAXBEL 0020000
+#define IUTF8 0040000
# define OPOST 000001
# define OCRNL 000004
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698