Commit 57a4ec31 authored by Alexander Alashkin's avatar Alexander Alashkin Committed by Cesanta Bot

Fix MinGW compilation

PUBLISHED_FROM=66b2dee87dc50de5f2891dee789beec89c3f6fb4
parent 511c9a6d
...@@ -195,6 +195,7 @@ ...@@ -195,6 +195,7 @@
#include <stdlib.h> #include <stdlib.h>
#include <sys/stat.h> #include <sys/stat.h>
#include <time.h> #include <time.h>
#include <ctype.h>
#ifdef _MSC_VER #ifdef _MSC_VER
#pragma comment(lib, "ws2_32.lib") /* Linking with winsock library */ #pragma comment(lib, "ws2_32.lib") /* Linking with winsock library */
...@@ -221,13 +222,13 @@ ...@@ -221,13 +222,13 @@
#define __func__ __FILE__ ":" STR(__LINE__) #define __func__ __FILE__ ":" STR(__LINE__)
#endif #endif
#define snprintf _snprintf #define snprintf _snprintf
#define fileno _fileno
#define vsnprintf _vsnprintf #define vsnprintf _vsnprintf
#define sleep(x) Sleep((x) *1000) #define sleep(x) Sleep((x) *1000)
#define to64(x) _atoi64(x) #define to64(x) _atoi64(x)
#if !defined(__MINGW32__) && !defined(__MINGW64__) #if !defined(__MINGW32__) && !defined(__MINGW64__)
#define popen(x, y) _popen((x), (y)) #define popen(x, y) _popen((x), (y))
#define pclose(x) _pclose(x) #define pclose(x) _pclose(x)
#define fileno _fileno
#endif #endif
#define rmdir _rmdir #define rmdir _rmdir
#if defined(_MSC_VER) && _MSC_VER >= 1400 #if defined(_MSC_VER) && _MSC_VER >= 1400
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment