sim: mark header that need to be as C header

This commit is contained in:
Reinhold Gschweicher
2023-05-01 22:18:24 +02:00
parent 8ae5ba7c0a
commit 7c2ea617f9
3 changed files with 22 additions and 6 deletions

View File

@@ -30,6 +30,10 @@
#ifndef INC_TASK_H
#define INC_TASK_H
#ifdef __cplusplus
extern "C" {
#endif
#include "portmacro_cmsis.h"
#include <stdint.h>
@@ -324,4 +328,8 @@ TaskHandle_t xTaskGetCurrentTaskHandle();
*/
BaseType_t xTaskGetSchedulerState();
#ifdef __cplusplus
}
#endif
#endif /* INC_TASK_H */