@@ -1121,8 +1121,6 @@ get_tv_lnum(typval_T *argvars)
11211121}
11221122
11231123#ifdef FEAT_FLOAT
1124- static int get_float_arg (typval_T * argvars , float_T * f );
1125-
11261124/*
11271125 * Get the float value of "argvars[0]" into "f".
11281126 * Returns FAIL when the argument is not a Number or Float.
@@ -1722,8 +1720,6 @@ f_browsedir(typval_T *argvars UNUSED, typval_T *rettv)
17221720 rettv -> v_type = VAR_STRING ;
17231721}
17241722
1725- static buf_T * find_buffer (typval_T * avar );
1726-
17271723/*
17281724 * Find a buffer by number or exact name.
17291725 */
@@ -3826,8 +3822,6 @@ f_fnamemodify(typval_T *argvars, typval_T *rettv)
38263822 vim_free (fbuf );
38273823}
38283824
3829- static void foldclosed_both (typval_T * argvars , typval_T * rettv , int end );
3830-
38313825/*
38323826 * "foldclosed()" function
38333827 */
@@ -4485,8 +4479,6 @@ f_getbufinfo(typval_T *argvars, typval_T *rettv)
44854479 }
44864480}
44874481
4488- static void get_buffer_lines (buf_T * buf , linenr_T start , linenr_T end , int retlist , typval_T * rettv );
4489-
44904482/*
44914483 * Get line or list of lines from buffer "buf" into "rettv".
44924484 * Return a range (from start to end) of lines in rettv from the specified
@@ -7566,8 +7558,6 @@ f_localtime(typval_T *argvars UNUSED, typval_T *rettv)
75667558 rettv -> vval .v_number = (varnumber_T )time (NULL );
75677559}
75687560
7569- static void get_maparg (typval_T * argvars , typval_T * rettv , int exact );
7570-
75717561 static void
75727562get_maparg (typval_T * argvars , typval_T * rettv , int exact )
75737563{
@@ -8177,8 +8167,6 @@ f_matchstrpos(typval_T *argvars, typval_T *rettv)
81778167 find_some_match (argvars , rettv , MATCH_POS );
81788168}
81798169
8180- static void max_min (typval_T * argvars , typval_T * rettv , int domax );
8181-
81828170 static void
81838171max_min (typval_T * argvars , typval_T * rettv , int domax )
81848172{
@@ -8261,8 +8249,6 @@ f_min(typval_T *argvars, typval_T *rettv)
82618249 max_min (argvars , rettv , FALSE);
82628250}
82638251
8264- static int mkdir_recurse (char_u * dir , int prot );
8265-
82668252/*
82678253 * Create the directory in which "dir" is located, and higher levels when
82688254 * needed.
@@ -9057,8 +9043,6 @@ f_reg_recording(typval_T *argvars UNUSED, typval_T *rettv)
90579043}
90589044
90599045#if defined(FEAT_RELTIME )
9060- static int list2proftime (typval_T * arg , proftime_T * tm );
9061-
90629046/*
90639047 * Convert a List to proftime_T.
90649048 * Return FAIL when there is something wrong.
@@ -9171,9 +9155,6 @@ f_reltimestr(typval_T *argvars UNUSED, typval_T *rettv)
91719155}
91729156
91739157#if defined(FEAT_CLIENTSERVER ) && defined(FEAT_X11 )
9174- static void make_connection (void );
9175- static int check_connection (void );
9176-
91779158 static void
91789159make_connection (void )
91799160{
@@ -9843,8 +9824,6 @@ f_reverse(typval_T *argvars, typval_T *rettv)
98439824#define SP_END 0x40 /* leave cursor at end of match */
98449825#define SP_COLUMN 0x80 /* start at cursor column */
98459826
9846- static int get_search_arg (typval_T * varp , int * flagsp );
9847-
98489827/*
98499828 * Get flags for a search function.
98509829 * Possibly sets "p_ws".
@@ -10674,8 +10653,6 @@ f_setline(typval_T *argvars, typval_T *rettv)
1067410653 set_buffer_lines (curbuf , lnum , FALSE, & argvars [1 ], rettv );
1067510654}
1067610655
10677- static void set_qf_ll_list (win_T * wp , typval_T * list_arg , typval_T * action_arg , typval_T * what_arg , typval_T * rettv );
10678-
1067910656/*
1068010657 * Used by "setqflist()" and "setloclist()" functions
1068110658 */
@@ -11215,7 +11192,6 @@ typedef struct
1121511192 int item_compare_keep_zero ;
1121611193} sortinfo_T ;
1121711194static sortinfo_T * sortinfo = NULL ;
11218- static void do_sort_uniq (typval_T * argvars , typval_T * rettv , int sort );
1121911195#define ITEM_COMPARE_FAIL 999
1122011196
1122111197/*
@@ -12860,8 +12836,6 @@ f_tabpagenr(typval_T *argvars UNUSED, typval_T *rettv)
1286012836}
1286112837
1286212838
12863- static int get_winnr (tabpage_T * tp , typval_T * argvar );
12864-
1286512839/*
1286612840 * Common code for tabpagewinnr() and winnr().
1286712841 */
0 commit comments