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_vms.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_vms.c')
-rw-r--r-- | src/os_vms.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/os_vms.c b/src/os_vms.c index 7c2d87255..30d29b98f 100644 --- a/src/os_vms.c +++ b/src/os_vms.c @@ -77,8 +77,8 @@ static char *Fspec_Rms; /* rms file spec, passed implicitly between rout -static TT_MODE get_tty __ARGS((void)); -static void set_tty __ARGS((int row, int col)); +static TT_MODE get_tty(void); +static void set_tty(int row, int col); #define EXPL_ALLOC_INC 64 |