diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-01-29 23:20:40 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-01-29 23:20:40 +0100 |
commit | d99df423c559d85c17779b3685426c489554908c (patch) | |
tree | 13cc6e922816525fa597cc5b3db1c91d0be24fc2 /src/blowfish.c | |
parent | baaa7e9ec7398a813e21285c272fa99792642077 (diff) | |
download | vim-git-d99df423c559d85c17779b3685426c489554908c.tar.gz |
patch 7.4.1200v7.4.1200
Problem: Still using __ARGS.
Solution: Remove __ARGS in several files. (script by Hirohito Higashi)
Diffstat (limited to 'src/blowfish.c')
-rw-r--r-- | src/blowfish.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/blowfish.c b/src/blowfish.c index 6bf2482f0..2191bafbe 100644 --- a/src/blowfish.c +++ b/src/blowfish.c @@ -56,12 +56,12 @@ typedef struct { } bf_state_T; -static void bf_e_block __ARGS((bf_state_T *state, UINT32_T *p_xl, UINT32_T *p_xr)); -static void bf_e_cblock __ARGS((bf_state_T *state, char_u *block)); -static int bf_check_tables __ARGS((UINT32_T pax[18], UINT32_T sbx[4][256], UINT32_T val)); -static int bf_self_test __ARGS((void)); -static void bf_key_init __ARGS((bf_state_T *state, char_u *password, char_u *salt, int salt_len)); -static void bf_cfb_init __ARGS((bf_state_T *state, char_u *seed, int seed_len)); +static void bf_e_block(bf_state_T *state, UINT32_T *p_xl, UINT32_T *p_xr); +static void bf_e_cblock(bf_state_T *state, char_u *block); +static int bf_check_tables(UINT32_T pax[18], UINT32_T sbx[4][256], UINT32_T val); +static int bf_self_test(void); +static void bf_key_init(bf_state_T *state, char_u *password, char_u *salt, int salt_len); +static void bf_cfb_init(bf_state_T *state, char_u *seed, int seed_len); /* Blowfish code */ static UINT32_T pax_init[18] = { |