1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
#if 0 #include <aio.h> struct aiocb { int aio_fildes; off_t aio_offset; volatile void * aio_buf; size_t aio_nbytes; int aio_reqprio; struct sigevent aio_sigevent; int aio_lio_opcode; }; /* POSIX(199309) */ #endif