diff options
| author | Thiago de Arruda <tpadilha84@gmail.com> | 2014-06-02 11:24:02 -0300 | 
|---|---|---|
| committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-06-02 11:24:02 -0300 | 
| commit | cab8cf970c09ea465d30e11eb356e2e5d37dc544 (patch) | |
| tree | 5d274c892e4d53f5e976ae8f6f58aba030785e02 /src/nvim/sha256.c | |
| parent | 52a9a5b0b0c53a1481d901f39ed0d1e7e86c3853 (diff) | |
| parent | 4aecb71b0e819aa84a430dacdab2146229c410a5 (diff) | |
| download | rneovim-cab8cf970c09ea465d30e11eb356e2e5d37dc544.tar.gz rneovim-cab8cf970c09ea465d30e11eb356e2e5d37dc544.tar.bz2 rneovim-cab8cf970c09ea465d30e11eb356e2e5d37dc544.zip | |
Merge pull request #710 'Automatically generate declarations'
Diffstat (limited to 'src/nvim/sha256.c')
| -rw-r--r-- | src/nvim/sha256.c | 5 | 
1 files changed, 3 insertions, 2 deletions
| diff --git a/src/nvim/sha256.c b/src/nvim/sha256.c index 4a61ddc66f..587e0504bf 100644 --- a/src/nvim/sha256.c +++ b/src/nvim/sha256.c @@ -17,8 +17,10 @@  #include "nvim/vim.h"  #include "nvim/sha256.h" -static void sha256_process(context_sha256_T *ctx, char_u data[64]); +#ifdef INCLUDE_GENERATED_DECLARATIONS +# include "sha256.c.generated.h" +#endif  #define GET_UINT32(n, b, i) { \    (n) = ((uint32_t)(b)[(i)] << 24) \          | ((uint32_t)(b)[(i) + 1] << 16) \ @@ -248,7 +250,6 @@ void sha256_finish(context_sha256_T *ctx, char_u digest[32])    PUT_UINT32(ctx->state[7], digest, 28);  } -static unsigned int get_some_time(void);  /// Gets the hex digest of the buffer.  /// | 
