소스 검색

freertos/add C++ include guards for esp_heap_caps.h

Darian Leung 8 년 전
부모
커밋
fff482acd9
1개의 변경된 파일7개의 추가작업 그리고 0개의 파일을 삭제
  1. 7 0
      components/heap/include/esp_heap_caps.h

+ 7 - 0
components/heap/include/esp_heap_caps.h

@@ -17,6 +17,10 @@
 #include <stdlib.h>
 #include "multi_heap.h"
 
+#ifdef __cplusplus
+extern "C" {
+#endif
+
 /**
  * @brief Flags to indicate the capabilities of the various memory systems
  */
@@ -306,3 +310,6 @@ void heap_caps_dump(uint32_t caps);
  */
 void heap_caps_dump_all();
 
+#ifdef __cplusplus
+}
+#endif