From a9ed291d2db2489ea7246b94a462bfb32d1d87ae Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Manuel=20P=C3=A9gouri=C3=A9-Gonnard?=
 <manuel.pegourie-gonnard@arm.com>
Date: Mon, 7 May 2018 10:10:30 +0200
Subject: [PATCH] Add missing extern "C" guard to new headers

---
 include/mbedtls/aead_chacha20_poly1305.h | 8 ++++++++
 include/mbedtls/chacha20.h               | 8 ++++++++
 include/mbedtls/poly1305.h               | 8 ++++++++
 3 files changed, 24 insertions(+)

diff --git a/include/mbedtls/aead_chacha20_poly1305.h b/include/mbedtls/aead_chacha20_poly1305.h
index 6f7ab6f7f..21c3158b0 100644
--- a/include/mbedtls/aead_chacha20_poly1305.h
+++ b/include/mbedtls/aead_chacha20_poly1305.h
@@ -32,6 +32,10 @@
 #define MBEDTLS_ERR_AEAD_CHACHA20_POLY1305_BAD_INPUT_DATA -0x00047 /**< Invalid input parameter(s). */
 #define MBEDTLS_ERR_AEAD_CHACHA20_POLY1305_BAD_STATE      -0x00049 /**< The requested operation is not permitted in the current state */
 
+#ifdef __cplusplus
+extern "C" {
+#endif
+
 typedef enum
 {
     MBEDTLS_AEAD_CHACHA20_POLY1305_ENCRYPT,
@@ -227,4 +231,8 @@ int mbedtls_aead_chacha20_poly1305_crypt_and_mac( const unsigned char key[32],
  */
 int mbedtls_aead_chacha20_poly1305_self_test( int verbose );
 
+#ifdef __cplusplus
+}
+#endif
+
 #endif /* MBEDTLS_AEAD_CHACHA20_POLY1305_H */
diff --git a/include/mbedtls/chacha20.h b/include/mbedtls/chacha20.h
index a2856a7e4..f88bd28b7 100644
--- a/include/mbedtls/chacha20.h
+++ b/include/mbedtls/chacha20.h
@@ -36,6 +36,10 @@
 
 #define MBEDTLS_ERR_CHACHA20_BAD_INPUT_DATA -0x003B /**< Invalid input parameter(s). */
 
+#ifdef __cplusplus
+extern "C" {
+#endif
+
 #if !defined(MBEDTLS_CHACHA20_ALT)
 
 typedef struct
@@ -189,4 +193,8 @@ int mbedtls_chacha20_crypt( const unsigned char key[32],
  */
 int mbedtls_chacha20_self_test( int verbose );
 
+#ifdef __cplusplus
+}
+#endif
+
 #endif /* MBEDTLS_CHACHA20_H */
diff --git a/include/mbedtls/poly1305.h b/include/mbedtls/poly1305.h
index 915f8ab0d..c911b9fde 100644
--- a/include/mbedtls/poly1305.h
+++ b/include/mbedtls/poly1305.h
@@ -34,6 +34,10 @@
 
 #define MBEDTLS_ERR_POLY1305_BAD_INPUT_DATA -0x0041 /**< Invalid input parameter(s). */
 
+#ifdef __cplusplus
+extern "C" {
+#endif
+
 #if !defined(MBEDTLS_POLY1305_ALT)
 
 typedef struct
@@ -140,4 +144,8 @@ int mbedtls_poly1305_mac( const unsigned char key[32],
  */
 int mbedtls_poly1305_self_test( int verbose );
 
+#ifdef __cplusplus
+}
+#endif
+
 #endif /* MBEDTLS_POLY1305_H */