summaryrefslogtreecommitdiff
path: root/include/aio.h
diff options
context:
space:
mode:
authorKacper <kacper@mail.openlinux.dev>2025-12-25 19:24:38 +0100
committerKacper <kacper@mail.openlinux.dev>2025-12-25 20:35:03 +0100
commita984eb367c032dbe2577f01238c3d1268526be70 (patch)
tree437fef40379b2758b129ccea39df3570fa2d145e /include/aio.h
parent8834571b202cf4dc9c649cfb096c213b6ecf1566 (diff)
Clang-tidy fixes
Diffstat (limited to 'include/aio.h')
-rw-r--r--include/aio.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/aio.h b/include/aio.h
index aa3598a6..0ac9c7d6 100644
--- a/include/aio.h
+++ b/include/aio.h
@@ -1,6 +1,8 @@
#ifndef __AIO_H
#define __AIO_H
+#include <stddef.h>
+#include <time.h>
#define __BITS_SIGEVENT_H_
#include <bits/sigevent.h>
@@ -39,7 +41,6 @@ int aio_read(struct aiocb *);
ssize_t aio_return(struct aiocb *);
int aio_suspend(const struct aiocb *const[], int, const struct timespec *);
int aio_write(struct aiocb *);
-int lio_listio(int, struct aiocb *restrict const[restrict], int,
- struct sigevent *restrict);
+int lio_listio(int, struct aiocb *restrict const[restrict], int, struct sigevent *restrict);
#endif