comparison src/proto/vim9type.pro @ 25567:0082503ff2ff v8.2.3320

patch 8.2.3320: some local functions are not static Commit: https://github.com/vim/vim/commit/8ee52affe7fd4daa03e002bc06611f0a8c3bcd5b Author: Yegappan Lakshmanan <yegappan@yahoo.com> Date: Mon Aug 9 19:59:06 2021 +0200 patch 8.2.3320: some local functions are not static Problem: Some local functions are not static. Solution: Add "static". Move snprintf() related code to strings.c. (Yegappan Lakshmanan, closes #8734)
author Bram Moolenaar <Bram@vim.org>
date Mon, 09 Aug 2021 20:00:06 +0200
parents effe5f2b4d01
children 57bc1001160b
comparison
equal deleted inserted replaced
25566:e1c7aa26ddf5 25567:0082503ff2ff
1 /* vim9type.c */ 1 /* vim9type.c */
2 type_T *get_type_ptr(garray_T *type_gap);
3 void clear_type_list(garray_T *gap); 2 void clear_type_list(garray_T *gap);
4 type_T *alloc_type(type_T *type); 3 type_T *alloc_type(type_T *type);
5 void free_type(type_T *type); 4 void free_type(type_T *type);
6 type_T *get_list_type(type_T *member_type, garray_T *type_gap); 5 type_T *get_list_type(type_T *member_type, garray_T *type_gap);
7 type_T *get_dict_type(type_T *member_type, garray_T *type_gap); 6 type_T *get_dict_type(type_T *member_type, garray_T *type_gap);