From fdeb7fd1ba1c515eaf84b6b46388231d980ce756 Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Fri, 13 Jun 2025 23:52:35 -0400 Subject: kernel: physmem: Make globals static Signed-off-by: Ian Moffett --- sys/vm/vm_physmem.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'sys') diff --git a/sys/vm/vm_physmem.c b/sys/vm/vm_physmem.c index ed9b5d2..c13130f 100644 --- a/sys/vm/vm_physmem.c +++ b/sys/vm/vm_physmem.c @@ -36,11 +36,11 @@ #include #include -size_t highest_frame_idx = 0; -size_t bitmap_size = 0; -size_t bitmap_free_start = 0; +static size_t highest_frame_idx = 0; +static size_t bitmap_size = 0; +static size_t bitmap_free_start = 0; -uint8_t *bitmap; +static uint8_t *bitmap; static struct limine_memmap_response *resp = NULL; static struct spinlock lock = {0}; -- cgit v1.2.3