Some public header files were missing 'extern "C"' C++ guards, and couldnt be used by C++ applications. Add the missing guards.
Fixes: 7a3357205755 ("lib: remove C++ include guard from private headers") Cc: tho...@monjalon.net Cc: sta...@dpdk.org Signed-off-by: Brian Dooley <brian.doo...@intel.com> --- lib/cryptodev/cryptodev_pmd.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/lib/cryptodev/cryptodev_pmd.h b/lib/cryptodev/cryptodev_pmd.h index d91902f6e0..24ff1a5480 100644 --- a/lib/cryptodev/cryptodev_pmd.h +++ b/lib/cryptodev/cryptodev_pmd.h @@ -5,6 +5,10 @@ #ifndef _CRYPTODEV_PMD_H_ #define _CRYPTODEV_PMD_H_ +#ifdef __cplusplus +extern "C" { +#endif + /** @file * RTE Crypto PMD APIs * @@ -640,4 +644,8 @@ RTE_STD_C11 struct rte_cryptodev_asym_session { uint8_t sess_private_data[0]; }; +#ifdef __cplusplus +} +#endif + #endif /* _CRYPTODEV_PMD_H_ */ -- 2.25.1