From: Pauli Date: Tue, 14 Jan 2020 00:48:48 +0000 (+1000) Subject: cmac: preprocessor indentation fixes X-Git-Tag: openssl-3.0.0-alpha1~596 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=70a7685a3282d0501ab10b1556296ab7973a852e;p=oweals%2Fopenssl.git cmac: preprocessor indentation fixes Reviewed-by: Matt Caswell (Merged from https://github.com/openssl/openssl/pull/10836) --- 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