comparison src/charset.c @ 14862:27b9a84395b5 v8.1.0443

patch 8.1.0443: unnecessary static function prototypes commit https://github.com/vim/vim/commit/6dff58f15cede9139b2fcfc64c9064326ea3d3b0 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Sep 30 21:43:26 2018 +0200 patch 8.1.0443: unnecessary static function prototypes Problem: Unnecessary static function prototypes. Solution: Remove unnecessary prototypes.
author Christian Brabandt <cb@256bit.org>
date Sun, 30 Sep 2018 21:45:07 +0200
parents 2ad722003b36
children 1ec942f1b648
comparison
equal deleted inserted replaced
14861:41fbdae837df 14862:27b9a84395b5
6 * Do ":help credits" in Vim to see a list of people who contributed. 6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code. 7 * See README.txt for an overview of the Vim source code.
8 */ 8 */
9 9
10 #include "vim.h" 10 #include "vim.h"
11
12 #ifdef FEAT_LINEBREAK
13 static int win_chartabsize(win_T *wp, char_u *p, colnr_T col);
14 #endif
15 11
16 #ifdef FEAT_MBYTE 12 #ifdef FEAT_MBYTE
17 # if defined(HAVE_WCHAR_H) 13 # if defined(HAVE_WCHAR_H)
18 # include <wchar.h> /* for towupper() and towlower() */ 14 # include <wchar.h> /* for towupper() and towlower() */
19 # endif 15 # endif