diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-01-29 22:47:03 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-01-29 22:47:03 +0100 |
commit | baaa7e9ec7398a813e21285c272fa99792642077 (patch) | |
tree | e9636114bf7c80ae3f7ded9ba9edb8b3ea504344 /src/os_w32exe.c | |
parent | 92b8b2d307e34117f146319872010b0ccc9d2713 (diff) | |
download | vim-git-baaa7e9ec7398a813e21285c272fa99792642077.tar.gz |
patch 7.4.1199v7.4.1199
Problem: Still using __ARGS.
Solution: Remove __ARGS in several files. (script by Hirohito Higashi)
Diffstat (limited to 'src/os_w32exe.c')
-rw-r--r-- | src/os_w32exe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/os_w32exe.c b/src/os_w32exe.c index d8fa2bffc..69eec888b 100644 --- a/src/os_w32exe.c +++ b/src/os_w32exe.c @@ -27,7 +27,7 @@ VimMain #else main #endif - __ARGS((int argc, char **argv)); + (int argc, char **argv); static int (_cdecl *pmain)(int, char **); #ifndef PROTO |