From 557673603bb553e90106e7d14da6447a5ff82164 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Mon, 28 Sep 2020 18:47:13 -0400 Subject: 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. --- src/internal/aio_impl.h | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/internal/aio_impl.h (limited to 'src/internal/aio_impl.h') 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 -- cgit v1.2.3-70-g09d2