Merge pull request #1366 from zudwalex/fix_rtos_lwip

Add missed include for FreeRTOS/LwIP arch
This commit is contained in:
Sergey Lyubka 2021-10-02 22:45:08 +01:00 committed by GitHub
commit 693863a51e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View File

@ -241,6 +241,7 @@ static __inline struct tm *localtime_r(time_t *t, struct tm *tm) {
#include <stdbool.h>
#include <stdint.h>
#include <string.h>
#include <stdio.h>
#if defined(__GNUC__)
#include <sys/stat.h>

View File

@ -6,6 +6,7 @@
#include <stdbool.h>
#include <stdint.h>
#include <string.h>
#include <stdio.h>
#if defined(__GNUC__)
#include <sys/stat.h>