From 4778a2f7e3c53a56491186d0b6fa5431804066d8 Mon Sep 17 00:00:00 2001 From: Loup Vaillant Date: Sun, 11 Sep 2016 16:34:37 +0200 Subject: [PATCH] removed leading double underscores for include guards --- chacha20.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/chacha20.h b/chacha20.h index d8e4518..91c0749 100644 --- a/chacha20.h +++ b/chacha20.h @@ -1,5 +1,5 @@ -#ifndef __CHACHA20__ -#define __CHACHA20__ +#ifndef CHACHA20_H +#define CHACHA20_H #include #include @@ -93,4 +93,4 @@ crypto_init_rng(crypto_rng_context *ctx, const uint8_t key[32]); void crypto_random_bytes(crypto_rng_context *ctx, uint8_t *out, size_t nb_bytes); -#endif // __CHACHA20__ +#endif // CHACHA20_H -- 2.47.3