summaryrefslogtreecommitdiff
path: root/src/aio/aio_fsync.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/aio/aio_fsync.c')
-rw-r--r--src/aio/aio_fsync.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/aio/aio_fsync.c b/src/aio/aio_fsync.c
new file mode 100644
index 00000000..0ac6ea87
--- /dev/null
+++ b/src/aio/aio_fsync.c
@@ -0,0 +1,9 @@
+#include <aio.h>
+#include <errno.h>
+
+int aio_fsync(int op, struct aiocb *cb)
+{
+ /* FIXME: unsupported */
+ errno = EINVAL;
+ return -1;
+}