aboutsummaryrefslogtreecommitdiff
path: root/util-linux/more.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-05-16 18:53:34 +0000
committerEric Andersen <andersen@codepoet.org>2001-05-16 18:53:34 +0000
commit2439a5982876ef4c8ec7291e156e73f244775ba8 (patch)
tree62dfc4e9bbfa13b87606af98adfeffb3b9705dd3 /util-linux/more.c
parent8f7a4ad4427614e28f2c51a4caa62c8ad9a78d8f (diff)
downloadbusybox-w32-2439a5982876ef4c8ec7291e156e73f244775ba8.tar.gz
busybox-w32-2439a5982876ef4c8ec7291e156e73f244775ba8.tar.bz2
busybox-w32-2439a5982876ef4c8ec7291e156e73f244775ba8.zip
Remove/replace the "div" call.
Diffstat (limited to 'util-linux/more.c')
-rw-r--r--util-linux/more.c12
1 files changed, 7 insertions, 5 deletions
diff --git a/util-linux/more.c b/util-linux/more.c
index 8ae2661ab..9f07633c3 100644
--- a/util-linux/more.c
+++ b/util-linux/more.c
@@ -184,12 +184,14 @@ extern int more_main(int argc, char **argv)
184 /* Adjust the terminal height for any overlap, so that 184 /* Adjust the terminal height for any overlap, so that
185 * no lines get lost off the top. */ 185 * no lines get lost off the top. */
186 if (len >= terminal_width) { 186 if (len >= terminal_width) {
187 div_t result = div( len, terminal_width); 187 int quot, rem;
188 if (result.quot) { 188 quot = len / terminal_width;
189 if (result.rem) 189 rem = len - (quot * terminal_width);
190 page_height-=result.quot; 190 if (quot) {
191 if (rem)
192 page_height-=quot;
191 else 193 else
192 page_height-=(result.quot-1); 194 page_height-=(quot-1);
193 } 195 }
194 } 196 }
195 if (++lines >= page_height) { 197 if (++lines >= page_height) {