From 70a7685a3282d0501ab10b1556296ab7973a852e Mon Sep 17 00:00:00 2001 From: Pauli Date: Tue, 14 Jan 2020 10:48:48 +1000 Subject: [PATCH] cmac: preprocessor indentation fixes Reviewed-by: Matt Caswell (Merged from https://github.com/openssl/openssl/pull/10836) --- include/openssl/cmac.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/include/openssl/cmac.h b/include/openssl/cmac.h index e2b49a0574..ef0ab3a36a 100644 --- a/include/openssl/cmac.h +++ b/include/openssl/cmac.h @@ -18,11 +18,11 @@ # ifndef OPENSSL_NO_CMAC -#ifdef __cplusplus +# ifdef __cplusplus extern "C" { -#endif +# endif -# include +# include /* Opaque */ typedef struct CMAC_CTX_st CMAC_CTX; @@ -39,9 +39,9 @@ int CMAC_Update(CMAC_CTX *ctx, const void *data, size_t dlen); int CMAC_Final(CMAC_CTX *ctx, unsigned char *out, size_t *poutlen); int CMAC_resume(CMAC_CTX *ctx); -#ifdef __cplusplus +# ifdef __cplusplus } -#endif +# endif # endif #endif -- 2.25.1