fd42ea1173acdd2573d371f426a9ed2329ca08f0
[musl] / aio_error.c
1 #include <aio.h>
2 #include "libc.h"
3
4 int aio_error(const struct aiocb *cb)
5 {
6         return cb->__err;
7 }
8
9 LFS64(aio_error);