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/sha256.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/sha256.c')
-rw-r--r-- | src/sha256.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/sha256.c b/src/sha256.c index 3bb77915c..98ccffe68 100644 --- a/src/sha256.c +++ b/src/sha256.c @@ -24,8 +24,6 @@ #if defined(FEAT_CRYPT) || defined(FEAT_PERSISTENT_UNDO) -static void sha256_process(context_sha256_T *ctx, char_u data[64]); - #define GET_UINT32(n, b, i) \ { \ (n) = ( (UINT32_T)(b)[(i) ] << 24) \ @@ -265,8 +263,6 @@ sha256_finish(context_sha256_T *ctx, char_u digest[32]) #endif /* FEAT_CRYPT || FEAT_PERSISTENT_UNDO */ #if defined(FEAT_CRYPT) || defined(PROTO) -static unsigned int get_some_time(void); - /* * Returns hex digest of "buf[buf_len]" in a static array. * if "salt" is not NULL also do "salt[salt_len]". |