summaryrefslogtreecommitdiff
path: root/src/fcntl/openat.c
blob: 1a2d95350fbe8f2c4bbd94e02a4068467038f364 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include <fcntl.h>
#include <unistd.h>
#include <stdarg.h>
#include "syscall.h"
#include "libc.h"

int openat(int fd, const char *filename, int flags, ...)
{
	int r;
	mode_t mode;
	va_list ap;
	va_start(ap, flags);
	mode = va_arg(ap, mode_t);
	va_end(ap);
	CANCELPT_BEGIN;
	r = syscall(SYS_openat, fd, filename, flags|O_LARGEFILE, mode);
	CANCELPT_END;
	return r;
}

LFS64(openat);