From ca082f686fd2dc7ee6f0284421f6212d6d4acee8 Mon Sep 17 00:00:00 2001 From: Anton Kling Date: Thu, 11 Apr 2024 17:22:00 +0200 Subject: bug fixes --- kernel/cpu/syscall.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'kernel/cpu') diff --git a/kernel/cpu/syscall.c b/kernel/cpu/syscall.c index 6789628..d3da640 100644 --- a/kernel/cpu/syscall.c +++ b/kernel/cpu/syscall.c @@ -110,8 +110,6 @@ int syscall_getpid(void) { return current_task->pid; } -void *align_page(void *a); - int syscall_brk(void *addr) { void *end = current_task->data_segment_end; if (!mmu_allocate_region(end, addr - end, MMU_FLAG_RW, NULL)) { -- cgit v1.2.3