mirror of
https://github.com/fluencelabs/musl
synced 2025-05-30 16:11:40 +00:00
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;
|
||
|
}
|