sha256.c: Remove unused headers and comments #2714

Reviewed-by: Justin M. Keyes <justinkz@gmail.com>
This commit is contained in:
Steven Oliver 2015-05-20 09:36:49 -04:00 committed by Michael Reed
parent 04a3d5ecc7
commit 1add7a422f

View File

@ -8,15 +8,11 @@
/// at your choice. /// at your choice.
/// ///
/// Vim specific notes: /// Vim specific notes:
/// Functions exported by this file:
/// 2. sha2_seed() generates a random header.
/// sha256_self_test() is implicitly called once. /// sha256_self_test() is implicitly called once.
#include <stddef.h> // for size_t #include <stddef.h> // for size_t
#include <stdio.h> // for snprintf(). #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/sha256.h" // for context_sha256_T
#include "nvim/vim.h" // for STRCPY()/STRLEN(). #include "nvim/vim.h" // for STRCPY()/STRLEN().