shithub: scc

ref: d2278660a0bce54ae4a5d37f2fbc6dd4c2f459c8
dir: /src/libc/arch/arm64/linux/_open.c/

View raw version
#include <stddef.h>

#include "../../../syscall.h"

#define AT_FDCWD  -100

extern int _openat(int fd, const char *fname, int flags, int mode);

int
_open(const char *fname, int flags, int mode)
{
	return _openat(AT_FDCWD, fname, flags, mode);
}