From c14321c4d35549d989d614437953b36b8c771cc2 Mon Sep 17 00:00:00 2001 From: lemon Date: Mon, 1 Dec 2025 19:10:53 +0100 Subject: c: make tentative definitions work --- obj/obj.h | 1 + 1 file changed, 1 insertion(+) (limited to 'obj/obj.h') diff --git a/obj/obj.h b/obj/obj.h index 235ab4d..8e9dea8 100644 --- a/obj/obj.h +++ b/obj/obj.h @@ -23,6 +23,7 @@ enum section { Snone, Stext, Srodata, Sdata, Sbss }; void objini(const char *infile, const char *outfile); void objdeffunc(const char *nam, bool globl, uint off, uint siz); +enum section objhassym(const char *name); uint objnewdat(const char *name, enum section, bool globl, uint siz, uint align); void objreloc(const char *sym, enum relockind, enum section, uint off, vlong addend); void objfini(void); -- cgit v1.2.3