1
0
Fork 0
mirror of https://github.com/warmcat/libwebsockets.git synced 2025-03-09 00:00:04 +01:00

just use limits.h directly

Signed-off-by: Peter Young <young40@qq.com>
This commit is contained in:
Peter Young 2013-01-17 10:08:16 +08:00 committed by Andy Green
parent 279a303662
commit 26757a75bc

View file

@ -28,6 +28,7 @@
#include <errno.h>
#include <fcntl.h>
#include <signal.h>
#include <limits.h>
#ifdef __MINGW64__
#else
#ifdef __MINGW32__
@ -78,11 +79,6 @@
#include <openssl/sha.h>
#endif
/* some Linux toolchains don't have this from the above, some do */
#ifndef PATH_MAX
#include <linux/limits.h>
#endif
#include "libwebsockets.h"
extern void _lws_log(int filter, const char *format, ...);