define O_LARGEFILE and O_NOATIME if needed

This commit is contained in:
Antonio SJ Musumeci 2016-10-24 17:22:57 -04:00
parent 00c814dc58
commit 157dae0d2f

View File

@ -37,6 +37,14 @@
#include "fs_sendfile.hpp"
#include "fs_xattr.hpp"
#ifndef O_LARGEFILE
# define O_LARGEFILE 0
#endif
#ifndef O_NOATIME
# define O_NOATIME 0
#endif
using std::string;
using std::vector;