summaryrefslogtreecommitdiffstats
path: root/include/crypto/async.h
diff options
context:
space:
mode:
authorFdaSilvaYY <fdasilvayy@gmail.com>2021-02-06 22:36:46 +0100
committerDr. Matthias St. Pierre <matthias.st.pierre@ncp-e.com>2021-02-10 23:20:57 +0100
commit80ce21fe1a425738eb0151ef9fdb975ba3050273 (patch)
tree5f1f9bc65897014af057ee5e0124bd7aca2752d1 /include/crypto/async.h
parent835f3526a259947463286bf6e082134af2ab7d49 (diff)
include/crypto: add a few missing #pragma once directives
Reviewed-by: Paul Dale <pauli@openssl.org> Reviewed-by: Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com> (Merged from https://github.com/openssl/openssl/pull/14096)
Diffstat (limited to 'include/crypto/async.h')
-rw-r--r--include/crypto/async.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/include/crypto/async.h b/include/crypto/async.h
index e9a89da314..691148858c 100644
--- a/include/crypto/async.h
+++ b/include/crypto/async.h
@@ -7,8 +7,13 @@
* https://www.openssl.org/source/license.html
*/
-#include <openssl/async.h>
+#ifndef OSSL_CRYPTO_ASYNC_H
+# define OSSL_CRYPTO_ASYNC_H
+# pragma once
+
+# include <openssl/async.h>
int async_init(void);
void async_deinit(void);
+#endif