mirror of
https://github.com/cesanta/mongoose.git
synced 2024-12-29 16:25:54 +08:00
24 lines
427 B
C
24 lines
427 B
C
#pragma once
|
|
|
|
#if MG_ARCH == MG_ARCH_UNIX
|
|
|
|
#define _DARWIN_UNLIMITED_SELECT 1
|
|
|
|
#include <arpa/inet.h>
|
|
#include <dirent.h>
|
|
#include <inttypes.h>
|
|
#include <netdb.h>
|
|
#include <netinet/tcp.h>
|
|
#include <signal.h>
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
#include <sys/select.h>
|
|
#include <sys/socket.h>
|
|
#include <sys/time.h>
|
|
#include <unistd.h>
|
|
#define MG_DIRSEP '/'
|
|
#define MG_ENABLE_POSIX 1
|
|
#define MG_INT64_FMT "%" PRId64
|
|
|
|
#endif
|