mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-22 20:36:50 +03:00
* textconf.c: mc --version prints the number of bits of off_t.
This commit is contained in:
parent
1ee7a7c31f
commit
c3f40d150f
@ -1,3 +1,7 @@
|
||||
2005-07-03 Roland Illig <roland.illig@gmx.de>
|
||||
|
||||
* textconf.c: mc --version prints the number of bits of off_t.
|
||||
|
||||
2005-07-01 Roland Illig <roland.illig@gmx.de>
|
||||
|
||||
* view.c (view_fix_cursor_position): Fixed a division-by-zero
|
||||
|
@ -19,8 +19,11 @@
|
||||
|
||||
#include <config.h>
|
||||
|
||||
#include <limits.h>
|
||||
#include <stdio.h>
|
||||
|
||||
#include <sys/types.h>
|
||||
|
||||
#include "global.h"
|
||||
|
||||
#ifdef USE_VFS
|
||||
@ -133,4 +136,6 @@ show_version (int verbose)
|
||||
|
||||
for (i = 0; features[i]; i++)
|
||||
printf ("%s", _(features[i]));
|
||||
|
||||
(void)printf("Using %d bits for file sizes\n", CHAR_BIT * sizeof(off_t));
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user