From a43163d058bd8d9da901e7a7e48591e2ff6aaabe Mon Sep 17 00:00:00 2001 From: Bernd Moessner Date: Sat, 6 Jan 2024 20:26:10 +0100 Subject: [PATCH] flashdev.h: Add missing C++ include guards Updates #4981 --- cpukit/include/dev/flash/flashdev.h | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/cpukit/include/dev/flash/flashdev.h b/cpukit/include/dev/flash/flashdev.h index d1dc08a5c4..6759357206 100644 --- a/cpukit/include/dev/flash/flashdev.h +++ b/cpukit/include/dev/flash/flashdev.h @@ -39,6 +39,11 @@ #include #include +#ifdef __cplusplus +extern "C" { +#endif + + typedef struct rtems_flashdev rtems_flashdev; /** @@ -454,6 +459,10 @@ void rtems_flashdev_destroy_and_free( rtems_flashdev *flash ); +#ifdef __cplusplus +} +#endif + /** @} */ #endif /* _DEV_FLASHDEV_H */