aboutsummaryrefslogtreecommitdiffhomepage
path: root/elf.c
diff options
context:
space:
mode:
authorlemon <lsof@mailbox.org>2023-06-18 22:48:50 +0200
committerlemon <lsof@mailbox.org>2023-06-18 22:48:50 +0200
commitf18b2ba67f6b2831c7bd47e701b04bd522b94fc0 (patch)
treec2c4cac4b1c150574782e7b52fa4291d2667085e /elf.c
parent32661a8d4c4be869e04f9432da3c485fcfa494de (diff)
forgot some statics
Diffstat (limited to 'elf.c')
-rw-r--r--elf.c4
1 files changed, 2 insertions, 2 deletions
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 {