diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-08-03 08:48:44 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-08-03 08:48:44 +0000 |
commit | 9a3b7b1db736c572ec8c2959daac148369a14cef (patch) | |
tree | cf6fda77eae6ff51d23d25ae518f772d51ae61c4 | |
parent | 80edead5ea731c0c144def4d249eb88fb16001ef (diff) | |
download | busybox-w32-9a3b7b1db736c572ec8c2959daac148369a14cef.tar.gz busybox-w32-9a3b7b1db736c572ec8c2959daac148369a14cef.tar.bz2 busybox-w32-9a3b7b1db736c572ec8c2959daac148369a14cef.zip |
ttysize: update copyright
-rw-r--r-- | miscutils/ttysize.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/miscutils/ttysize.c b/miscutils/ttysize.c index c1b702c2c..51d4ec76f 100644 --- a/miscutils/ttysize.c +++ b/miscutils/ttysize.c | |||
@@ -1,8 +1,13 @@ | |||
1 | /* vi: set sw=4 ts=4: */ | ||
1 | /* | 2 | /* |
2 | * Replacement for "stty size", which is awkward for shell script use. | 3 | * Replacement for "stty size", which is awkward for shell script use. |
3 | * - Allows to request width, height, or both, in any order. | 4 | * - Allows to request width, height, or both, in any order. |
4 | * - Does not complain on error, but returns default 80x24. | 5 | * - Does not complain on error, but returns width 80, height 24. |
5 | * - Size: less than 200 bytes | 6 | * - Size: less than 200 bytes |
7 | * | ||
8 | * Copyright (C) 2007 by Denys Vlasenko <vda.linux@googlemail.com> | ||
9 | * | ||
10 | * Licensed under the GPL v2, see the file LICENSE in this tarball. | ||
6 | */ | 11 | */ |
7 | #include "libbb.h" | 12 | #include "libbb.h" |
8 | 13 | ||