ref: 56f48a1788a3d7e1e6ee53d58f4849c6b9b3a01c
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);
}