forked from aniani/vim
Problem: Several global functions are used in only one file. Solution: Make the functions static. (Yegappan Lakshmanan, closes #5884)
11 lines
292 B
C
11 lines
292 B
C
/* version.c */
|
|
void init_longVersion(void);
|
|
int highest_patch(void);
|
|
int has_patch(int n);
|
|
void ex_version(exarg_T *eap);
|
|
void list_in_columns(char_u **items, int size, int current);
|
|
void list_version(void);
|
|
void maybe_intro_message(void);
|
|
void ex_intro(exarg_T *eap);
|
|
/* vim: set ft=c : */
|