Large file >2Gib support.

This commit is contained in:
Eric Andersen
2000-09-21 02:23:30 +00:00
parent 350b3f9236
commit 8a2e56c5df
5 changed files with 38 additions and 0 deletions

View File

@@ -123,7 +123,11 @@ extern int more_main(int argc, char **argv)
lines = 0;
len = fprintf(stdout, "--More-- ");
if (file != stdin) {
#if _FILE_OFFSET_BITS == 64
len += fprintf(stdout, "(%d%% of %lld bytes)",
#else
len += fprintf(stdout, "(%d%% of %ld bytes)",
#endif
(int) (100 *
((double) ftell(file) /
(double) st.st_size)),