blob: 2975112da33acc3412fdfb37ff19e3d910fbb3cc [file] [log] [blame]
/*
* openat.c
*
* On 32-bit platforms we need to pass O_LARGEFILE to the openat()
* system call, to indicate that we're 64-bit safe.
*/
#define _KLIBC_IN_OPEN_C
#include <unistd.h>
#include <fcntl.h>
#include <bitsize.h>
#if _BITSIZE == 32 && !defined(__i386__) && defined(__NR_openat)
extern int __openat(int, const char *, int, mode_t);
int openat(int dirfd, const char *pathname, int flags, mode_t mode)
{
return __openat(dirfd, pathname, flags|O_LARGEFILE, mode);
}
#endif