Remove unused macros.

Signed-off-by: Andreas Mohr <and@gmx.li>
Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
This commit is contained in:
Andreas Mohr 2021-12-22 21:46:58 +00:00 committed by Andrew Borodin
parent 1bc8abd79f
commit 9489b5edc4
3 changed files with 0 additions and 11 deletions

View File

@ -220,7 +220,6 @@ const key_code_name_t key_name_conv_tab[] = {
/*** file scope macro definitions ****************************************************************/
#define MC_MSEC_PER_SEC 1000
#define MC_USEC_PER_MSEC 1000
/* The maximum sequence length (32 + null terminator) */

View File

@ -80,10 +80,6 @@ struct sigaction startup_handler;
#define UID_CACHE_SIZE 200
#define GID_CACHE_SIZE 30
/* Pipes are guaranteed to be able to hold at least 4096 bytes */
/* More than that would be unportable */
#define MAX_PIPE_SIZE 4096
/*** file scope type declarations ****************************************************************/
typedef struct

View File

@ -56,14 +56,8 @@
#define number_of_parsers 7
#define MINUTE (60)
#define HOUR (60 * MINUTE)
#define DAY (24 * HOUR)
#define NO_SIZE ((off_t) (-1L))
#define NO_SIZE_YET ((off_t) (-2L))
#define NO_DATE ((time_t) (-1L))
#define NO_DATE_YET ((time_t) (-2L))
#define FIRST_TOKEN strtok (line, " \t")
#define NEXT_TOKEN strtok (NULL, " \t")