Commit 3bc97a55 authored by Victor Zverovich's avatar Victor Zverovich

Merge pull request #241 from Gachapen/fix_fileno

Fix fileno causing compile error when #defined
parents 00d56e06 c2ffa146
......@@ -55,11 +55,14 @@
# ifdef __MINGW32__
# define _SH_DENYNO 0x40
# undef fileno
# endif
#endif // _WIN32
#ifdef fileno
# undef fileno
#endif
namespace {
#ifdef _WIN32
// Return type of read and write functions.
......
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