From 169daa11155988a210fac949297381743f3cb400 Mon Sep 17 00:00:00 2001 From: Kacper Date: Tue, 9 Dec 2025 23:14:53 +0100 Subject: feat: clang-tidy fixes --- lib/libc/sys/ioctl.c | 3 ++- lib/libc/sys/mount.c | 3 ++- lib/libc/sys/umount.c | 3 ++- lib/libc/sys/umount2.c | 3 ++- 4 files changed, 8 insertions(+), 4 deletions(-) (limited to 'lib/libc/sys') diff --git a/lib/libc/sys/ioctl.c b/lib/libc/sys/ioctl.c index 45fbdca7..0b9c3b82 100644 --- a/lib/libc/sys/ioctl.c +++ b/lib/libc/sys/ioctl.c @@ -1,4 +1,5 @@ -#include "asm/unistd_64.h" // for __NR_ioctl + + #include // for va_arg, va_end, va_list, va_start #include // for __syscall_3, syscall diff --git a/lib/libc/sys/mount.c b/lib/libc/sys/mount.c index 4ef617b9..c42dc90e 100644 --- a/lib/libc/sys/mount.c +++ b/lib/libc/sys/mount.c @@ -1,4 +1,5 @@ -#include "asm/unistd_64.h" // for __NR_mount + + #include // for mount #include // for __syscall_5, syscall diff --git a/lib/libc/sys/umount.c b/lib/libc/sys/umount.c index 91ce5a77..ed2b2edc 100644 --- a/lib/libc/sys/umount.c +++ b/lib/libc/sys/umount.c @@ -1,4 +1,5 @@ -#include "asm/unistd_64.h" // for __NR_umount2 + + #include // for __syscall_2, syscall diff --git a/lib/libc/sys/umount2.c b/lib/libc/sys/umount2.c index 12f37f98..17ff73aa 100644 --- a/lib/libc/sys/umount2.c +++ b/lib/libc/sys/umount2.c @@ -1,4 +1,5 @@ -#include "asm/unistd_64.h" // for __NR_umount2 + + #include // for __syscall_2, syscall -- cgit v1.2.3