Adopt arch_freertos.h for CCRH compiler

This commit is contained in:
Sergey Lyubka 2024-02-26 12:05:35 +00:00
parent a0f33aebf7
commit 943e1c5f77
2 changed files with 6 additions and 4 deletions

View File

@ -183,8 +183,9 @@ extern "C" {
#include <string.h>
#if defined(__ARMCC_VERSION)
#define mode_t size_t
#include <time.h>
#include <alloca.h>
#include <time.h>
#elif defined(__CCRH__)
#else
#include <sys/stat.h>
#endif

View File

@ -15,8 +15,9 @@
#include <string.h>
#if defined(__ARMCC_VERSION)
#define mode_t size_t
#include <time.h>
#include <alloca.h>
#include <time.h>
#elif defined(__CCRH__)
#else
#include <sys/stat.h>
#endif