]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
Accept `flush' option. From Arne H. Juul arnej@lise.unit.no
authorJim Meyering <jim@meyering.net>
Sun, 28 Mar 1993 16:16:43 +0000 (16:16 +0000)
committerJim Meyering <jim@meyering.net>
Sun, 28 Mar 1993 16:16:43 +0000 (16:16 +0000)
src/stty.c

index 4fb8158299f1d7d80dd1fe903752018854b1b3f5..b9daf0a12f94a18d68bb4e07c467d018f69166fc 100644 (file)
 #if defined(VLNEXT) && !defined(CLNEXT)
 #define        CLNEXT Control ('v')
 #endif
+#if defined(VFLUSHO) && !defined(CFLUSHO)
+#define        CFLUSHO Control ('o')
+#endif
 
 char *visible ();
 unsigned long baud_to_value ();
@@ -346,6 +349,9 @@ static struct control_info control_info[] =
 #ifdef VLNEXT
   {"lnext", CLNEXT, VLNEXT},
 #endif
+#ifdef VFLUSHO
+  {"flush", CFLUSHO, VFLUSHO},
+#endif
 
   /* These must be last because of the display routines. */
   {"min", 1, VMIN},