diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2017-10-05 14:40:24 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2017-10-05 14:40:24 +0200 |
commit | ebe6d9d8758d36e03cf39b6587597c67ab778436 (patch) | |
tree | 8f45b962c04005a6c718c583dd59d0ce0323545c /coreutils/stty.c | |
parent | 099ef9324e88679e0b26f6f13476583e03f53dee (diff) | |
download | busybox-w32-ebe6d9d8758d36e03cf39b6587597c67ab778436.tar.gz busybox-w32-ebe6d9d8758d36e03cf39b6587597c67ab778436.tar.bz2 busybox-w32-ebe6d9d8758d36e03cf39b6587597c67ab778436.zip |
whitespace and comment format fixes, no code changes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'coreutils/stty.c')
-rw-r--r-- | coreutils/stty.c | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/coreutils/stty.c b/coreutils/stty.c index b6e836364..df23f4cae 100644 --- a/coreutils/stty.c +++ b/coreutils/stty.c | |||
@@ -1,24 +1,24 @@ | |||
1 | /* vi: set sw=4 ts=4: */ | 1 | /* vi: set sw=4 ts=4: */ |
2 | /* stty -- change and print terminal line settings | 2 | /* stty -- change and print terminal line settings |
3 | Copyright (C) 1990-1999 Free Software Foundation, Inc. | 3 | * Copyright (C) 1990-1999 Free Software Foundation, Inc. |
4 | 4 | * | |
5 | Licensed under GPLv2 or later, see file LICENSE in this source tree. | 5 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
6 | */ | 6 | */ |
7 | /* Usage: stty [-ag] [-F device] [setting...] | 7 | /* Usage: stty [-ag] [-F device] [setting...] |
8 | 8 | * | |
9 | Options: | 9 | * Options: |
10 | -a Write all current settings to stdout in human-readable form. | 10 | * -a Write all current settings to stdout in human-readable form. |
11 | -g Write all current settings to stdout in stty-readable form. | 11 | * -g Write all current settings to stdout in stty-readable form. |
12 | -F Open and use the specified device instead of stdin | 12 | * -F Open and use the specified device instead of stdin |
13 | 13 | * | |
14 | If no args are given, write to stdout the baud rate and settings that | 14 | * If no args are given, write to stdout the baud rate and settings that |
15 | have been changed from their defaults. Mode reading and changes | 15 | * have been changed from their defaults. Mode reading and changes |
16 | are done on the specified device, or stdin if none was specified. | 16 | * are done on the specified device, or stdin if none was specified. |
17 | 17 | * | |
18 | David MacKenzie <djm@gnu.ai.mit.edu> | 18 | * David MacKenzie <djm@gnu.ai.mit.edu> |
19 | 19 | * | |
20 | Special for busybox ported by Vladimir Oleynik <dzo@simtreas.ru> 2001 | 20 | * Special for busybox ported by Vladimir Oleynik <dzo@simtreas.ru> 2001 |
21 | */ | 21 | */ |
22 | //config:config STTY | 22 | //config:config STTY |
23 | //config: bool "stty (8.6 kb)" | 23 | //config: bool "stty (8.6 kb)" |
24 | //config: default y | 24 | //config: default y |