From eb3b81297d6db7d76ecec5b358a24688af03c779 Mon Sep 17 00:00:00 2001 From: Deomid Ryabkov <rojer@cesanta.com> Date: Thu, 4 Jan 2018 13:28:19 +0300 Subject: [PATCH] Use stock ARM GCC and Newlib from Ubuntu distro Standardize common packages in build images, to make better use of Docker image cache. PUBLISHED_FROM=a080e83cf5dd80feaf7960147dee36413244a92c --- mongoose.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/mongoose.h b/mongoose.h index ed2c669cd..742deab67 100644 --- a/mongoose.h +++ b/mongoose.h @@ -1630,15 +1630,15 @@ char *inet_ntoa(struct in_addr in); #define CS_COMMON_PLATFORMS_PLATFORM_STM32_H_ #if CS_PLATFORM == CS_P_STM32 -#include <sys/types.h> -#include <sys/stat.h> -#include <stdint.h> -#include <inttypes.h> -#include <stdio.h> #include <ctype.h> #include <errno.h> -#include <memory.h> #include <fcntl.h> +#include <stdint.h> +#include <stdio.h> +#include <string.h> +#include <sys/stat.h> +#include <sys/time.h> +#include <sys/types.h> #include <stm32_sdk_hal.h> #define to64(x) strtoll(x, NULL, 10) -- GitLab