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_amiga.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_amiga.c')
-rw-r--r-- | src/os_amiga.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/os_amiga.c b/src/os_amiga.c index ccd3b0c1c..4e9545584 100644 --- a/src/os_amiga.c +++ b/src/os_amiga.c @@ -71,12 +71,12 @@ #ifdef __amigaos4__ # define dos_packet(a, b, c) DoPkt(a, b, c, 0, 0, 0, 0) #elif !defined(AZTEC_C) && !defined(__AROS__) -static long dos_packet __ARGS((struct MsgPort *, long, long)); +static long dos_packet(struct MsgPort *, long, long); #endif -static int lock2name __ARGS((BPTR lock, char_u *buf, long len)); -static void out_num __ARGS((long n)); -static struct FileInfoBlock *get_fib __ARGS((char_u *)); -static int sortcmp __ARGS((const void *a, const void *b)); +static int lock2name(BPTR lock, char_u *buf, long len); +static void out_num(long n); +static struct FileInfoBlock *get_fib(char_u *); +static int sortcmp(const void *a, const void *b); static BPTR raw_in = (BPTR)NULL; static BPTR raw_out = (BPTR)NULL; @@ -219,7 +219,7 @@ mch_delay(msec, ignoreinput) int ignoreinput; { #ifndef LATTICE /* SAS declares void Delay(ULONG) */ - void Delay __ARGS((long)); + void Delay(long); #endif if (msec > 0) |