aboutsummaryrefslogtreecommitdiff
path: root/coreutils/stty.c
diff options
context:
space:
mode:
authorvda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2007-04-10 15:42:06 +0000
committervda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2007-04-10 15:42:06 +0000
commita1cce942064b62a2f238383d61c331b14ab764eb (patch)
tree82d252f04f9a8511be452dcd8b5e322c59653c72 /coreutils/stty.c
parentb2ea681ba78e9de8abaabfd51e876aaf4c5198a9 (diff)
downloadbusybox-w32-a1cce942064b62a2f238383d61c331b14ab764eb.tar.gz
busybox-w32-a1cce942064b62a2f238383d61c331b14ab764eb.tar.bz2
busybox-w32-a1cce942064b62a2f238383d61c331b14ab764eb.zip
style fixes. No code changes.
git-svn-id: svn://busybox.net/trunk/busybox@18381 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'coreutils/stty.c')
-rw-r--r--coreutils/stty.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/coreutils/stty.c b/coreutils/stty.c
index 7493192e9..8757f247c 100644
--- a/coreutils/stty.c
+++ b/coreutils/stty.c
@@ -70,15 +70,15 @@
70 70
71/* SunOS 5.3 loses (^Z doesn't work) if 'swtch' is the same as 'susp'. 71/* SunOS 5.3 loses (^Z doesn't work) if 'swtch' is the same as 'susp'.
72 So the default is to disable 'swtch.' */ 72 So the default is to disable 'swtch.' */
73#if defined (__sparc__) && defined (__svr4__) 73#if defined(__sparc__) && defined(__svr4__)
74# undef CSWTCH 74# undef CSWTCH
75# define CSWTCH _POSIX_VDISABLE 75# define CSWTCH _POSIX_VDISABLE
76#endif 76#endif
77 77
78#if defined(VWERSE) && !defined (VWERASE) /* AIX-3.2.5 */ 78#if defined(VWERSE) && !defined(VWERASE) /* AIX-3.2.5 */
79# define VWERASE VWERSE 79# define VWERASE VWERSE
80#endif 80#endif
81#if defined(VDSUSP) && !defined (CDSUSP) 81#if defined(VDSUSP) && !defined(CDSUSP)
82# define CDSUSP Control('y') 82# define CDSUSP Control('y')
83#endif 83#endif
84#if !defined(VREPRINT) && defined(VRPRNT) /* Irix 4.0.5 */ 84#if !defined(VREPRINT) && defined(VRPRNT) /* Irix 4.0.5 */