Files
semi-libc/src/internal/aio_impl.h
T
Rich Felker 557673603b 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.
2020-10-14 20:27:12 -04:00

10 lines
160 B
C

#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