Merge pull request #497 from Mailaender/patch-2

Fix error: 'O_BINARY' was not declared in this scope (close #461)
This commit is contained in:
David Capello 2014-11-02 13:40:26 -03:00
commit 86a3b8c66e

View File

@ -21,6 +21,11 @@
#include <fcntl.h>
#endif
#ifndef O_BINARY
#define O_BINARY 0
#define O_TEXT 0
#endif
using namespace std;
namespace base {