blob: 31d6744c753ff125b90f8a0c38dd5db3249c7d44 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#include <fcntl.h>
#include <unistd.h>
#include <stdarg.h>
#include "syscall.h"
#include "libc.h"
int open(const char *filename, int flags, ...)
{
mode_t mode;
va_list ap;
va_start(ap, flags);
mode = va_arg(ap, mode_t);
va_end(ap);
return syscall_cp(SYS_open, filename, flags|O_LARGEFILE, mode);
}
LFS64(open);
|