From 112eafe13c3628cad6e692179c064dbbc3be2d8b Mon Sep 17 00:00:00 2001 From: dzwdz Date: Fri, 9 Jun 2023 17:22:31 +0200 Subject: ports/dash: stub out everything needed for dash to compile --- src/user/lib/include/fcntl.h | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) (limited to 'src/user/lib/include/fcntl.h') diff --git a/src/user/lib/include/fcntl.h b/src/user/lib/include/fcntl.h index e69de29..6338d1f 100644 --- a/src/user/lib/include/fcntl.h +++ b/src/user/lib/include/fcntl.h @@ -0,0 +1,25 @@ +#pragma once + +#define F_SETFL 1 +#define F_GETFL 2 +#define F_DUPFD 3 +#define F_SETFD 4 + +#define FD_CLOEXEC 1 + +#define O_APPEND 0 +#define O_CREAT 0 +#define O_EXCL 0 +#define O_NONBLOCK 0 +#define O_RDONLY 0 +#define O_RDWR 0 +#define O_TRUNC 0 +#define O_WRONLY 0 + +#define R_OK 1 +#define W_OK 2 +#define X_OK 4 + +/* it can either take an additonal mode_t argument or none */ +int open(const char *path, int flags, ...); +int fcntl(int fd, int cmd, ...); -- cgit v1.2.3