mirror of
https://github.com/neovim/neovim.git
synced 2025-09-28 14:08:32 +00:00
Remove __ARGS macro. Close #205
This is a squash of all commits sent to #81. - Remove unused undef of __ARGS. - Fix mch_rename declaration. - Follow changes related to moved & extracted files. - Properly indent function declarations of getchar.h and quickfix.c.
This commit is contained in:

committed by
Thiago de Arruda

parent
2bd6d44403
commit
d9283c4927
@@ -1,13 +1,13 @@
|
||||
#ifndef NEOVIM_VERSION_H
|
||||
#define NEOVIM_VERSION_H
|
||||
/* version.c */
|
||||
void make_version __ARGS((void));
|
||||
int highest_patch __ARGS((void));
|
||||
int has_patch __ARGS((int n));
|
||||
void ex_version __ARGS((exarg_T *eap));
|
||||
void list_version __ARGS((void));
|
||||
void maybe_intro_message __ARGS((void));
|
||||
void intro_message __ARGS((int colon));
|
||||
void ex_intro __ARGS((exarg_T *eap));
|
||||
void make_version(void);
|
||||
int highest_patch(void);
|
||||
int has_patch(int n);
|
||||
void ex_version(exarg_T *eap);
|
||||
void list_version(void);
|
||||
void maybe_intro_message(void);
|
||||
void intro_message(int colon);
|
||||
void ex_intro(exarg_T *eap);
|
||||
/* vim: set ft=c : */
|
||||
#endif /* NEOVIM_VERSION_H */
|
||||
|
Reference in New Issue
Block a user