ref: 2e7e4ca6b9def1b7bae6b93285f6431039f9656a
dir: /src/libc/arch/posix/_open.c/
#include <stddef.h>
#include <sys.h>
#include "../../syscall.h"
extern int _openat(int, const char *, int, int);
int
_open(const char *fname, int flags, int mode)
{
return _openat(AT_FDCWD, fname, flags, mode);
}