mirror of https://github.com/MidnightCommander/mc
viewer: remove unused const value.
Signed-off-by: Andreas Mohr <and@gmx.li> Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
This commit is contained in:
parent
5d8a9cdfbb
commit
c314995b9f
|
@ -23,7 +23,6 @@ typedef unsigned char byte;
|
||||||
/* A width or height on the screen */
|
/* A width or height on the screen */
|
||||||
typedef unsigned int screen_dimen;
|
typedef unsigned int screen_dimen;
|
||||||
|
|
||||||
extern const off_t INVALID_OFFSET;
|
|
||||||
extern const off_t OFFSETTYPE_MAX;
|
extern const off_t OFFSETTYPE_MAX;
|
||||||
|
|
||||||
/*** enums ***************************************************************************************/
|
/*** enums ***************************************************************************************/
|
||||||
|
|
|
@ -56,7 +56,6 @@
|
||||||
/*** global variables ****************************************************************************/
|
/*** global variables ****************************************************************************/
|
||||||
|
|
||||||
#define OFF_T_BITWIDTH (unsigned int) (sizeof (off_t) * CHAR_BIT - 1)
|
#define OFF_T_BITWIDTH (unsigned int) (sizeof (off_t) * CHAR_BIT - 1)
|
||||||
const off_t INVALID_OFFSET = (off_t) (-1);
|
|
||||||
const off_t OFFSETTYPE_MAX = ((off_t) 1 << (OFF_T_BITWIDTH - 1)) - 1;
|
const off_t OFFSETTYPE_MAX = ((off_t) 1 << (OFF_T_BITWIDTH - 1)) - 1;
|
||||||
|
|
||||||
/*** file scope macro definitions ****************************************************************/
|
/*** file scope macro definitions ****************************************************************/
|
||||||
|
|
Loading…
Reference in New Issue