summaryrefslogtreecommitdiff
path: root/src/aio/aio_error.c
blob: fd42ea1173acdd2573d371f426a9ed2329ca08f0 (plain) (blame)
1
2
3
4
5
6
7
8
9
#include <aio.h>
#include "libc.h"

int aio_error(const struct aiocb *cb)
{
	return cb->__err;
}

LFS64(aio_error);