forked from mirrors/nixpkgs
libredirect: fix build on darwin (#78399)
libredirect: fix build on darwin
This commit is contained in:
commit
3c62a82259
|
@ -61,7 +61,11 @@ static const char * rewrite(const char * path, char * buf)
|
|||
|
||||
static int open_needs_mode(int flags)
|
||||
{
|
||||
#ifdef O_TMPFILE
|
||||
return (flags & O_CREAT) || (flags & O_TMPFILE) == O_TMPFILE;
|
||||
#else
|
||||
return flags & O_CREAT;
|
||||
#endif
|
||||
}
|
||||
|
||||
/* The following set of Glibc library functions is very incomplete -
|
||||
|
|
Loading…
Reference in a new issue