2828#include "vim.h"
2929
3030#if defined(FEAT_CMDL_COMPL ) || defined(FEAT_LISTCMDS ) || defined(FEAT_EVAL ) || defined(FEAT_PERL )
31- static char_u * buflist_match __ARGS (( regmatch_T * rmp , buf_T * buf , int ignore_case ) );
31+ static char_u * buflist_match ( regmatch_T * rmp , buf_T * buf , int ignore_case );
3232# define HAVE_BUFLIST_MATCH
33- static char_u * fname_match __ARGS (( regmatch_T * rmp , char_u * name , int ignore_case ) );
33+ static char_u * fname_match ( regmatch_T * rmp , char_u * name , int ignore_case );
3434#endif
35- static void buflist_setfpos __ARGS (( buf_T * buf , win_T * win , linenr_T lnum , colnr_T col , int copy_options ) );
36- static wininfo_T * find_wininfo __ARGS (( buf_T * buf , int skip_diff_buffer ) );
35+ static void buflist_setfpos ( buf_T * buf , win_T * win , linenr_T lnum , colnr_T col , int copy_options );
36+ static wininfo_T * find_wininfo ( buf_T * buf , int skip_diff_buffer );
3737#ifdef UNIX
38- static buf_T * buflist_findname_stat __ARGS (( char_u * ffname , struct stat * st ) );
39- static int otherfile_buf __ARGS (( buf_T * buf , char_u * ffname , struct stat * stp ) );
40- static int buf_same_ino __ARGS (( buf_T * buf , struct stat * stp ) );
38+ static buf_T * buflist_findname_stat ( char_u * ffname , struct stat * st );
39+ static int otherfile_buf ( buf_T * buf , char_u * ffname , struct stat * stp );
40+ static int buf_same_ino ( buf_T * buf , struct stat * stp );
4141#else
42- static int otherfile_buf __ARGS (( buf_T * buf , char_u * ffname ) );
42+ static int otherfile_buf ( buf_T * buf , char_u * ffname );
4343#endif
4444#ifdef FEAT_TITLE
45- static int ti_change __ARGS (( char_u * str , char_u * * last ) );
45+ static int ti_change ( char_u * str , char_u * * last );
4646#endif
47- static int append_arg_number __ARGS (( win_T * wp , char_u * buf , int buflen , int add_file ) );
48- static void free_buffer __ARGS (( buf_T * ) );
49- static void free_buffer_stuff __ARGS (( buf_T * buf , int free_options ) );
50- static void clear_wininfo __ARGS (( buf_T * buf ) );
47+ static int append_arg_number ( win_T * wp , char_u * buf , int buflen , int add_file );
48+ static void free_buffer ( buf_T * );
49+ static void free_buffer_stuff ( buf_T * buf , int free_options );
50+ static void clear_wininfo ( buf_T * buf );
5151
5252#ifdef UNIX
5353# define dev_T dev_t
@@ -56,7 +56,7 @@ static void clear_wininfo __ARGS((buf_T *buf));
5656#endif
5757
5858#if defined(FEAT_SIGNS )
59- static void insert_sign __ARGS (( buf_T * buf , signlist_T * prev , signlist_T * next , int id , linenr_T lnum , int typenr ) );
59+ static void insert_sign ( buf_T * buf , signlist_T * prev , signlist_T * next , int id , linenr_T lnum , int typenr );
6060#endif
6161
6262#if defined(FEAT_WINDOWS ) && defined(FEAT_QUICKFIX )
@@ -1010,7 +1010,7 @@ do_bufdel(command, arg, addr_count, start_bnr, end_bnr, forceit)
10101010#if defined(FEAT_LISTCMDS ) || defined(FEAT_PYTHON ) \
10111011 || defined(FEAT_PYTHON3 ) || defined(PROTO )
10121012
1013- static int empty_curbuf __ARGS (( int close_others , int forceit , int action ) );
1013+ static int empty_curbuf ( int close_others , int forceit , int action );
10141014
10151015/*
10161016 * Make the current buffer empty.
@@ -2617,7 +2617,7 @@ buflist_setfpos(buf, win, lnum, col, copy_options)
26172617}
26182618
26192619#ifdef FEAT_DIFF
2620- static int wininfo_other_tab_diff __ARGS (( wininfo_T * wip ) );
2620+ static int wininfo_other_tab_diff ( wininfo_T * wip );
26212621
26222622/*
26232623 * Return TRUE when "wip" has 'diff' set and the diff is only for another tab
@@ -5128,7 +5128,7 @@ ex_buffer_all(eap)
51285128
51295129#endif /* FEAT_WINDOWS */
51305130
5131- static int chk_modeline __ARGS (( linenr_T , int ) );
5131+ static int chk_modeline ( linenr_T , int );
51325132
51335133/*
51345134 * do_modelines() - process mode lines for the current file
0 commit comments