Merge "enable support for large files (> 2G)"

This commit is contained in:
David Turner 2011-07-08 18:52:49 -07:00 committed by Android Code Review
commit 57aadbb096
2 changed files with 0 additions and 4 deletions

View File

@ -35,9 +35,7 @@ int open(const char *pathname, int flags, ...)
{
mode_t mode = 0;
#if !defined(__i386__)
flags |= O_LARGEFILE;
#endif
if (flags & O_CREAT)
{

View File

@ -35,9 +35,7 @@ int openat(int fd, const char *pathname, int flags, ...)
{
mode_t mode = 0;
#if !defined(__i386__)
flags |= O_LARGEFILE;
#endif
if (flags & O_CREAT)
{