summaryrefslogtreecommitdiff
path: root/src/internal/aio_impl.h
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2020-09-28 18:47:13 -0400
committerRich Felker <dalias@aerifal.cx>2020-10-14 20:27:12 -0400
commit557673603bb553e90106e7d14da6447a5ff82164 (patch)
treec689824388134be6f38046eb8e3927e736d6b515 /src/internal/aio_impl.h
parent373376608394e4227b3a0027d06a8f0b39ddd40d (diff)
downloadmusl-557673603bb553e90106e7d14da6447a5ff82164.tar.gz
move aio implementation details to a proper internal header
also fix the lack of declaration (and thus hidden visibility) in __stdio_close's use of __aio_close.
Diffstat (limited to 'src/internal/aio_impl.h')
-rw-r--r--src/internal/aio_impl.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/internal/aio_impl.h b/src/internal/aio_impl.h
new file mode 100644
index 00000000..a8657665
--- /dev/null
+++ b/src/internal/aio_impl.h
@@ -0,0 +1,9 @@
+#ifndef AIO_IMPL_H
+#define AIO_IMPL_H
+
+extern hidden volatile int __aio_fut;
+
+extern hidden int __aio_close(int);
+extern hidden void __aio_atfork(int);
+
+#endif