diff options
author | Bram Moolenaar <Bram@vim.org> | 2018-09-30 21:43:26 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2018-09-30 21:43:26 +0200 |
commit | 6dff58f15cede9139b2fcfc64c9064326ea3d3b0 (patch) | |
tree | f2326055f5fe8bb5948374155f11bd220c1d9dc7 /src/blowfish.c | |
parent | f45d747ebf920940b041f5c75c2bfdffb6b670ae (diff) | |
download | vim-git-6dff58f15cede9139b2fcfc64c9064326ea3d3b0.tar.gz |
patch 8.1.0443: unnecessary static function prototypesv8.1.0443
Problem: Unnecessary static function prototypes.
Solution: Remove unnecessary prototypes.
Diffstat (limited to 'src/blowfish.c')
-rw-r--r-- | src/blowfish.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/blowfish.c b/src/blowfish.c index eaf0b9ed5..e361d98cd 100644 --- a/src/blowfish.c +++ b/src/blowfish.c @@ -56,13 +56,6 @@ typedef struct { } bf_state_T; -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] = { 0x243f6a88u, 0x85a308d3u, 0x13198a2eu, |