Skip to content

Commit

Permalink
Fixes #247
Browse files Browse the repository at this point in the history
Most probably also fixes #213
  • Loading branch information
obastemur committed Jan 24, 2016
1 parent 0fa1597 commit 63d9dfc
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions deps/leveldb/port-libuv/port_uv.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,13 @@
#include <sys/types.h>
#include <sys/endian.h>
#elif defined(_MSC_VER)
#if _MSC_VER < 1600
#include "stdint-msvc2008.h"
#endif
#define PLATFORM_IS_LITTLE_ENDIAN true
#if _MSC_VER < 1900
#define snprintf _snprintf
#endif
#define close _close
#define fread_unlocked _fread_nolock
#else
Expand Down

0 comments on commit 63d9dfc

Please sign in to comment.