mongoose/src/arch_esp32.h

23 lines
355 B
C
Raw Normal View History

2020-12-05 19:26:32 +08:00
#pragma once
#if MG_ARCH == MG_ARCH_ESP32
#include <ctype.h>
2020-12-05 19:26:32 +08:00
#include <dirent.h>
#include <errno.h>
#include <fcntl.h>
#include <limits.h>
2020-12-05 19:26:32 +08:00
#include <netdb.h>
#include <stdarg.h>
#include <stddef.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <time.h>
#define MG_PATH_MAX 128
2020-12-05 19:26:32 +08:00
#endif