2023-04-23 14:32:37 +03:00
|
|
|
#include <fcntl.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <sys/syscall.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
int open(const char* path, int oflag, ...)
|
|
|
|
{
|
2023-05-29 20:19:17 +03:00
|
|
|
return syscall(SYS_OPEN, path, oflag);
|
2023-04-23 14:32:37 +03:00
|
|
|
}
|
2023-06-11 03:27:56 +03:00
|
|
|
|
|
|
|
int openat(int fd, const char* path, int oflag, ...)
|
|
|
|
{
|
|
|
|
return syscall(SYS_OPENAT, fd, path, oflag);
|
|
|
|
}
|