flashdev.h: Add missing C++ include guards

Updates #4981
This commit is contained in:
Bernd Moessner
2024-01-16 10:57:43 -06:00
committed by Joel Sherrill
parent 7eee05a37d
commit a43163d058
+9
View File
@@ -39,6 +39,11 @@
#include <rtems/thread.h>
#include <sys/types.h>
#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 */