summaryrefslogtreecommitdiff
path: root/src/fcntl/creat.c
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2024-01-31 16:06:48 -0500
committerJakob Kaivo <jkk@ung.org>2024-01-31 16:06:48 -0500
commit34386fe72b733e12f5ab45bf1d4f5b59621c3a96 (patch)
treecd3e90f47f9c46f234df635d91c133b2e8a8f94d /src/fcntl/creat.c
parent57fd57ab4005e37bfab4bf7c637eecc1eb5445b5 (diff)
remove more cruft
Diffstat (limited to 'src/fcntl/creat.c')
-rw-r--r--src/fcntl/creat.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/fcntl/creat.c b/src/fcntl/creat.c
deleted file mode 100644
index de99ae36..00000000
--- a/src/fcntl/creat.c
+++ /dev/null
@@ -1,16 +0,0 @@
-#if 0
-
-#include <sys/types.h>
-#include <fcntl.h>
-
-int creat(const char *path, mode_t mode)
-{
- return open(path, O_WRONLY | O_CREAT | O_TRUNC, mode);
-}
-
-/*
-POSIX(1)
-*/
-
-
-#endif