summaryrefslogtreecommitdiff
path: root/src/unistd/close.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/unistd/close.c')
-rw-r--r--src/unistd/close.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/unistd/close.c b/src/unistd/close.c
deleted file mode 100644
index d5a9f702..00000000
--- a/src/unistd/close.c
+++ /dev/null
@@ -1,16 +0,0 @@
-#if 0
-
-#include <sys/types.h>
-#include <unistd.h>
-#include "_syscall.h"
-
-int close(int fildes)
-{
- SYSCALL(close, int, -1, fildes, 0, 0, 0, 0, 0);
-}
-/*
-POSIX(1)
-*/
-
-
-#endif