Closes https://github.com/espressif/esp-idf/issues/1195
#include "esp_heap_caps.h"
#include "soc/soc_memory_layout.h"
+#ifdef __cplusplus
+extern "C" {
+#endif
+
/**
* @brief Initialize the capability-aware heap allocator.
*
esp_err_t heap_caps_add_region_with_caps(const uint32_t caps[], intptr_t start, intptr_t end);
-
-
+#ifdef __cplusplus
+}
+#endif
#include <stdint.h>
#include <esp_err.h>
+#ifdef __cplusplus
+extern "C" {
+#endif
+
#if !defined(CONFIG_HEAP_TRACING) && !defined(HEAP_TRACE_SRCFILE)
#warning "esp_heap_trace.h is included but heap tracing is disabled in menuconfig, functions are no-ops"
#endif
*
*/
void heap_trace_dump(void);
+
+#ifdef __cplusplus
+}
+#endif