Skip to content

Commit

Permalink
Merge pull request #888 from tony/freebsd
Browse files Browse the repository at this point in the history
Fix missing permission bitmasks on FreeBSD
  • Loading branch information
dacap committed Dec 5, 2015
2 parents 6ab858b + 9c30429 commit d1b972e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/base/file_handle.cpp
Expand Up @@ -16,9 +16,10 @@

#ifdef _WIN32
#include <windows.h>
#include <sys/stat.h>
#include <io.h>
#endif

#include <sys/stat.h>
#include <fcntl.h>

#ifndef O_BINARY
Expand Down

0 comments on commit d1b972e

Please sign in to comment.