Warning: That file was not part of the compilation database. It may have many parsing errors.
1 | // SPDX-License-Identifier: GPL-2.0 |
---|---|
2 | #include <aio.h> |
3 | |
4 | int main(void) |
5 | { |
6 | struct aiocb aiocb; |
7 | |
8 | aiocb.aio_fildes = 0; |
9 | aiocb.aio_offset = 0; |
10 | aiocb.aio_buf = 0; |
11 | aiocb.aio_nbytes = 0; |
12 | aiocb.aio_reqprio = 0; |
13 | aiocb.aio_sigevent.sigev_notify = 1 /*SIGEV_NONE*/; |
14 | |
15 | return (int)aio_return(&aiocb); |
16 | } |
17 |
Warning: That file was not part of the compilation database. It may have many parsing errors.