mirror of
https://github.com/fluencelabs/musl
synced 2025-05-29 15:41:36 +00:00
some features are not yet supported, and only minimal testing has been performed. should be considered experimental at this point.
10 lines
136 B
C
10 lines
136 B
C
#include <aio.h>
|
|
#include <errno.h>
|
|
|
|
int aio_fsync(int op, struct aiocb *cb)
|
|
{
|
|
/* FIXME: unsupported */
|
|
errno = EINVAL;
|
|
return -1;
|
|
}
|