Merge pull request #1982 from cesanta/freertos

Fix FreeRTOS arch includes on newlib platforms
This commit is contained in:
Sergio R. Caprile 2023-01-20 18:16:55 -03:00 committed by GitHub
commit fcffd17b11
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View File

@ -174,6 +174,7 @@ extern "C" {
#include <stdio.h>
#include <stdlib.h> // rand(), strtol(), atoi()
#include <string.h>
#include <sys/stat.h>
#include <FreeRTOS.h>
#include <task.h>

View File

@ -11,6 +11,7 @@
#include <stdio.h>
#include <stdlib.h> // rand(), strtol(), atoi()
#include <string.h>
#include <sys/stat.h>
#include <FreeRTOS.h>
#include <task.h>