diff options
Diffstat (limited to 'src/sha256.c')
-rw-r--r-- | src/sha256.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sha256.c b/src/sha256.c index bc2be2678f..0aaf07d5e5 100644 --- a/src/sha256.c +++ b/src/sha256.c @@ -23,7 +23,7 @@ #include "vim.h" #include "sha256.h" -static void sha256_process __ARGS((context_sha256_T *ctx, char_u data[64])); +static void sha256_process(context_sha256_T *ctx, char_u data[64]); #define GET_UINT32(n, b, i) \ { \ @@ -256,7 +256,7 @@ void sha256_finish(context_sha256_T *ctx, char_u digest[32]) PUT_UINT32(ctx->state[7], digest, 28); } -static unsigned int get_some_time __ARGS((void)); +static unsigned int get_some_time(void); /* * Returns hex digest of "buf[buf_len]" in a static array. |