diff options
author | Eric Andersen <andersen@codepoet.org> | 2004-03-15 08:29:22 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2004-03-15 08:29:22 +0000 |
commit | c7bda1ce659294d6e22c06e087f6f265983c7578 (patch) | |
tree | 4c6d2217f4d8306c59cf1096f8664e1cfd167213 /util-linux/more.c | |
parent | 8854004b41065b3d081af7f3df13a100b0c8bfbe (diff) | |
download | busybox-w32-c7bda1ce659294d6e22c06e087f6f265983c7578.tar.gz busybox-w32-c7bda1ce659294d6e22c06e087f6f265983c7578.tar.bz2 busybox-w32-c7bda1ce659294d6e22c06e087f6f265983c7578.zip |
Remove trailing whitespace. Update copyright to include 2004.
Diffstat (limited to 'util-linux/more.c')
-rw-r--r-- | util-linux/more.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/util-linux/more.c b/util-linux/more.c index e3a1d8656..d7b7ce22f 100644 --- a/util-linux/more.c +++ b/util-linux/more.c | |||
@@ -3,10 +3,10 @@ | |||
3 | * Mini more implementation for busybox | 3 | * Mini more implementation for busybox |
4 | * | 4 | * |
5 | * Copyright (C) 1995, 1996 by Bruce Perens <bruce@pixar.com>. | 5 | * Copyright (C) 1995, 1996 by Bruce Perens <bruce@pixar.com>. |
6 | * Copyright (C) 1999-2003 by Erik Andersen <andersen@codepoet.org> | 6 | * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org> |
7 | * | 7 | * |
8 | * Latest version blended together by Erik Andersen <andersen@codepoet.org>, | 8 | * Latest version blended together by Erik Andersen <andersen@codepoet.org>, |
9 | * based on the original more implementation by Bruce, and code from the | 9 | * based on the original more implementation by Bruce, and code from the |
10 | * Debian boot-floppies team. | 10 | * Debian boot-floppies team. |
11 | * | 11 | * |
12 | * Termios corrects by Vladimir Oleynik <dzo@simtreas.ru> | 12 | * Termios corrects by Vladimir Oleynik <dzo@simtreas.ru> |
@@ -101,7 +101,7 @@ extern int more_main(int argc, char **argv) | |||
101 | file = bb_wfopen(*argv, "r"); | 101 | file = bb_wfopen(*argv, "r"); |
102 | if(file==0) | 102 | if(file==0) |
103 | goto loop; | 103 | goto loop; |
104 | 104 | ||
105 | st.st_size = 0; | 105 | st.st_size = 0; |
106 | fstat(fileno(file), &st); | 106 | fstat(fileno(file), &st); |
107 | 107 | ||
@@ -158,7 +158,7 @@ extern int more_main(int argc, char **argv) | |||
158 | goto end; | 158 | goto end; |
159 | } | 159 | } |
160 | 160 | ||
161 | /* | 161 | /* |
162 | * There are two input streams to worry about here: | 162 | * There are two input streams to worry about here: |
163 | * | 163 | * |
164 | * c : the character we are reading from the file being "mored" | 164 | * c : the character we are reading from the file being "mored" |