commit | bdff012f4416c75e65950a19688533c4def5abf6 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Sun Apr 05 18:56:05 2020 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Sun Apr 05 18:56:05 2020 +0200 |
tree | 46033295fed951cbb0243f92902247dbfcaacb38 | |
parent | 5d905c2b9612314f6d8616560800665056050adc [diff] [blame] |
patch 8.2.0514: several global functions are used in only one file Problem: Several global functions are used in only one file. Solution: Make the functions static. (Yegappan Lakshmanan, closes #5884)
diff --git a/src/getchar.c b/src/getchar.c index 6b1068d..7bbdf35 100644 --- a/src/getchar.c +++ b/src/getchar.c
@@ -99,7 +99,7 @@ /* * Free and clear a buffer. */ - void + static void free_buff(buffheader_T *buf) { buffblock_T *p, *np;