mongoose/src/arch_newlib.h

24 lines
398 B
C
Raw Normal View History

#pragma once
2022-05-01 20:47:33 +08:00
#if MG_ARCH == MG_ARCH_NEWLIB
2021-07-29 21:21:20 +08:00
#define _POSIX_TIMERS
2021-07-27 16:54:45 +08:00
2022-01-11 01:30:51 +08:00
#include <ctype.h>
#include <errno.h>
#include <stdarg.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/stat.h>
#include <sys/time.h>
#include <sys/types.h>
#include <time.h>
#include <unistd.h>
#define MG_PATH_MAX 100
#define MG_ENABLE_SOCKET 0
2022-02-14 19:19:24 +08:00
#define MG_ENABLE_DIRLIST 0
2022-05-01 20:47:33 +08:00
#endif