Fixes build with clang-17+ error: type specifier missing, defaults to 'int'; ISO C99 and later do not support implicit int [-Wimplicit-int] Signed-off-by: Khem Raj <raj.khem@xxxxxxxxx> --- ltp/fsx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ltp/fsx.c b/ltp/fsx.c index ee4b8fe4..c0aec23f 100644 --- a/ltp/fsx.c +++ b/ltp/fsx.c @@ -2581,7 +2581,7 @@ out_error: return -1; } #else -aio_rw(int rw, int fd, char *buf, unsigned len, unsigned offset) +int aio_rw(int rw, int fd, char *buf, unsigned len, unsigned offset) { fprintf(stderr, "io_rw: need AIO support!\n"); exit(111); -- 2.42.1