musl/src/aio/aio_fsync.c
Rich Felker b4de6f93ae implement POSIX asynchronous io
some features are not yet supported, and only minimal testing has been
performed. should be considered experimental at this point.
2011-09-09 01:07:38 -04:00

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;
}