From f18b2ba67f6b2831c7bd47e701b04bd522b94fc0 Mon Sep 17 00:00:00 2001 From: lemon Date: Sun, 18 Jun 2023 22:48:50 +0200 Subject: forgot some statics --- elf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'elf.c') diff --git a/elf.c b/elf.c index d25bc9b..668a599 100644 --- a/elf.c +++ b/elf.c @@ -21,8 +21,8 @@ struct sym { size; }; static vec_of(struct sym) symtab; -uchar dataalign = 1, rodataalign = 1, bssalign = 1; -uint nbss; +static uchar dataalign = 1, rodataalign = 1, bssalign = 1; +static uint nbss; static vec_of(uchar) data, rodata; static uint ntextrel, nrodatarel, ndatarel; struct reloc { -- cgit v1.2.3