summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortb <>2021-12-12 21:21:58 +0000
committertb <>2021-12-12 21:21:58 +0000
commita9567d0e5638e27d25c7a10c5666b32d3ed20dd1 (patch)
tree53f54d2512e432d82f6a140995125277158d60d9 /src
parenta4968ecaa0c133519b712101e5aa091916a3a845 (diff)
downloadopenbsd-a9567d0e5638e27d25c7a10c5666b32d3ed20dd1.tar.gz
openbsd-a9567d0e5638e27d25c7a10c5666b32d3ed20dd1.tar.bz2
openbsd-a9567d0e5638e27d25c7a10c5666b32d3ed20dd1.zip
Add header guards to evp_locl.h.
ok inoguchi
Diffstat (limited to 'src')
-rw-r--r--src/lib/libcrypto/evp/evp_locl.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/lib/libcrypto/evp/evp_locl.h b/src/lib/libcrypto/evp/evp_locl.h
index 8df6135493..ec4cc6d63d 100644
--- a/src/lib/libcrypto/evp/evp_locl.h
+++ b/src/lib/libcrypto/evp/evp_locl.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: evp_locl.h,v 1.16 2019/10/29 07:52:17 jsing Exp $ */ 1/* $OpenBSD: evp_locl.h,v 1.17 2021/12/12 21:21:58 tb Exp $ */
2/* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL 2/* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
3 * project 2000. 3 * project 2000.
4 */ 4 */
@@ -56,6 +56,9 @@
56 * 56 *
57 */ 57 */
58 58
59#ifndef HEADER_EVP_LOCL_H
60#define HEADER_EVP_LOCL_H
61
59__BEGIN_HIDDEN_DECLS 62__BEGIN_HIDDEN_DECLS
60 63
61/* Macros to code block cipher wrappers */ 64/* Macros to code block cipher wrappers */
@@ -370,3 +373,5 @@ struct evp_aead_st {
370int EVP_PKEY_CTX_md(EVP_PKEY_CTX *ctx, int optype, int cmd, const char *md_name); 373int EVP_PKEY_CTX_md(EVP_PKEY_CTX *ctx, int optype, int cmd, const char *md_name);
371 374
372__END_HIDDEN_DECLS 375__END_HIDDEN_DECLS
376
377#endif /* !HEADER_EVP_LOCL_H */