summaryrefslogtreecommitdiffstats
path: root/libc-top-half/musl/src/unistd/close.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc-top-half/musl/src/unistd/close.c')
-rw-r--r--libc-top-half/musl/src/unistd/close.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/libc-top-half/musl/src/unistd/close.c b/libc-top-half/musl/src/unistd/close.c
new file mode 100644
index 0000000..a2105f5
--- /dev/null
+++ b/libc-top-half/musl/src/unistd/close.c
@@ -0,0 +1,19 @@
+#include <unistd.h>
+#include <errno.h>
+#include "aio_impl.h"
+#include "syscall.h"
+
+static int dummy(int fd)
+{
+ return fd;
+}
+
+weak_alias(dummy, __aio_close);
+
+int close(int fd)
+{
+ fd = __aio_close(fd);
+ int r = __syscall_cp(SYS_close, fd);
+ if (r == -EINTR) r = 0;
+ return __syscall_ret(r);
+}