From d07fa25e04a19ccb9aa25bb6e2156d23d213db77 Mon Sep 17 00:00:00 2001 From: Anton Kling Date: Tue, 28 Nov 2023 20:11:05 +0100 Subject: Meta: Apply new clang-format rules to kernel --- kernel/syscalls/mmap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'kernel/syscalls/mmap.c') diff --git a/kernel/syscalls/mmap.c b/kernel/syscalls/mmap.c index 295bc13..85b32a3 100644 --- a/kernel/syscalls/mmap.c +++ b/kernel/syscalls/mmap.c @@ -1,5 +1,5 @@ -#include #include +#include void *syscall_mmap(SYS_MMAP_PARAMS *args) { return mmap(args->addr, args->length, args->prot, args->flags, args->fd, -- cgit v1.2.3