From 920746cbb5d18d8aef284d3fe71a57cd52509117 Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Tue, 14 Nov 2023 12:12:10 -0500 Subject: disable all functions; will strategically reenable them as tested --- src/fcntl/creat.c | 5 +++++ src/fcntl/fcntl.c | 5 +++++ src/fcntl/open.c | 5 +++++ 3 files changed, 15 insertions(+) (limited to 'src/fcntl') diff --git a/src/fcntl/creat.c b/src/fcntl/creat.c index 3161da79..de99ae36 100644 --- a/src/fcntl/creat.c +++ b/src/fcntl/creat.c @@ -1,3 +1,5 @@ +#if 0 + #include #include @@ -9,3 +11,6 @@ int creat(const char *path, mode_t mode) /* POSIX(1) */ + + +#endif diff --git a/src/fcntl/fcntl.c b/src/fcntl/fcntl.c index 3e2715b4..a66a5ec3 100644 --- a/src/fcntl/fcntl.c +++ b/src/fcntl/fcntl.c @@ -1,3 +1,5 @@ +#if 0 + #include #include #include @@ -58,3 +60,6 @@ int fcntl(int fildes, int cmd, ...) /* POSIX(1) */ + + +#endif diff --git a/src/fcntl/open.c b/src/fcntl/open.c index bc1ae2c1..0317a888 100644 --- a/src/fcntl/open.c +++ b/src/fcntl/open.c @@ -1,3 +1,5 @@ +#if 0 + #include #include #include /* OH */ @@ -28,3 +30,6 @@ int open(const char *path, int oflag, ...) /* POSIX(1) */ + + +#endif -- cgit v1.2.1