summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2018-09-30 21:43:26 +0200
committerBram Moolenaar <Bram@vim.org>2018-09-30 21:43:26 +0200
commit6dff58f15cede9139b2fcfc64c9064326ea3d3b0 (patch)
treef2326055f5fe8bb5948374155f11bd220c1d9dc7 /src/main.c
parentf45d747ebf920940b041f5c75c2bfdffb6b670ae (diff)
downloadvim-git-6dff58f15cede9139b2fcfc64c9064326ea3d3b0.tar.gz
patch 8.1.0443: unnecessary static function prototypesv8.1.0443
Problem: Unnecessary static function prototypes. Solution: Remove unnecessary prototypes.
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/main.c b/src/main.c
index d9cd6f9d0..5cfec3499 100644
--- a/src/main.c
+++ b/src/main.c
@@ -39,9 +39,7 @@ static void init_locale(void);
# endif
static void early_arg_scan(mparm_T *parmp);
#ifndef NO_VIM_MAIN
-static void main_msg(char *s);
static void usage(void);
-static int get_number_arg(char_u *p, int *idx, int def);
static void parse_command_name(mparm_T *parmp);
static void command_line_scan(mparm_T *parmp);
static void check_tty(mparm_T *parmp);
@@ -3476,8 +3474,6 @@ check_swap_exists_action(void)
#endif /* NO_VIM_MAIN */
#if defined(STARTUPTIME) || defined(PROTO)
-static void time_diff(struct timeval *then, struct timeval *now);
-
static struct timeval prev_timeval;
# ifdef WIN3264