diff options
author | Steven Oliver <oliver.steven@gmail.com> | 2015-05-20 09:36:49 -0400 |
---|---|---|
committer | Michael Reed <m.reed@mykolab.com> | 2015-05-21 01:24:21 -0400 |
commit | 1add7a422f12526a073a960a189bf8fe1e4d09e8 (patch) | |
tree | e2460ca0869d917fa28e68c3eedde2f6189a86b2 | |
parent | 04a3d5ecc7c9f626b28f60fdd76f08e0e9c867d3 (diff) | |
download | rneovim-1add7a422f12526a073a960a189bf8fe1e4d09e8.tar.gz rneovim-1add7a422f12526a073a960a189bf8fe1e4d09e8.tar.bz2 rneovim-1add7a422f12526a073a960a189bf8fe1e4d09e8.zip |
sha256.c: Remove unused headers and comments #2714
Reviewed-by: Justin M. Keyes <justinkz@gmail.com>
-rw-r--r-- | src/nvim/sha256.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/nvim/sha256.c b/src/nvim/sha256.c index 17b80f013b..7670b64468 100644 --- a/src/nvim/sha256.c +++ b/src/nvim/sha256.c @@ -8,15 +8,11 @@ /// at your choice. /// /// Vim specific notes: -/// Functions exported by this file: -/// 2. sha2_seed() generates a random header. /// sha256_self_test() is implicitly called once. #include <stddef.h> // for size_t #include <stdio.h> // for snprintf(). -#include <stdlib.h> // for rand_r(). -#include "nvim/os/time.h" // for os_hrtime(). #include "nvim/sha256.h" // for context_sha256_T #include "nvim/vim.h" // for STRCPY()/STRLEN(). |