diff options
author | ZyX <kp-pav@ya.ru> | 2014-05-18 00:34:16 +0400 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-06-02 11:04:18 -0300 |
commit | 6498b281fa4fdb3728944b30f18981613b621925 (patch) | |
tree | ac780af7fef9fb74d5330812760322140893861d /src/nvim/main.c | |
parent | 70929f7e1616bab2783cc5735c6061981cda8a0f (diff) | |
download | rneovim-6498b281fa4fdb3728944b30f18981613b621925.tar.gz rneovim-6498b281fa4fdb3728944b30f18981613b621925.tar.bz2 rneovim-6498b281fa4fdb3728944b30f18981613b621925.zip |
Remove remaining declarations with new script: finddeclarations.pl
Diffstat (limited to 'src/nvim/main.c')
-rw-r--r-- | src/nvim/main.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/nvim/main.c b/src/nvim/main.c index 0e55353712..7b567be564 100644 --- a/src/nvim/main.c +++ b/src/nvim/main.c @@ -98,8 +98,6 @@ typedef struct { #define EDIT_TAG 3 /* tag name argument given, use tagname */ #define EDIT_QF 4 /* start in quickfix mode */ -#if defined(UNIX) && !defined(NO_VIM_MAIN) -#endif #ifdef INCLUDE_GENERATED_DECLARATIONS # include "main.c.generated.h" #endif @@ -134,7 +132,7 @@ static char *(main_errors[]) = }; #ifndef NO_VIM_MAIN /* skip this for unittests */ - int main(int argc, char **argv) +int main(int argc, char **argv) { char_u *fname = NULL; /* file name from command line */ mparm_T params; /* various parameters passed between |