From f59784bba0fab3015f0f2176e8129c4fe8795c61 Mon Sep 17 00:00:00 2001 From: Nikita Smith Date: Thu, 7 May 2026 17:08:37 -0700 Subject: [PATCH] headers for Linux OS layer --- src/linker/lnk.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/linker/lnk.c b/src/linker/lnk.c index 4ce28cc7..c933bd29 100644 --- a/src/linker/lnk.c +++ b/src/linker/lnk.c @@ -17,6 +17,8 @@ // --- Code Base --------------------------------------------------------------- #include "base/base_inc.h" +#include "x64/x64.h" +#include "os/os_inc.h" #include "hash_table.h" #include "coff/coff.h" #include "coff/coff_parse.h" @@ -36,6 +38,8 @@ #include "llvm/llvm.h" #include "base/base_inc.c" +#include "x64/x64.c" +#include "os/os_inc.c" #include "hash_table.c" #include "coff/coff.c" #include "coff/coff_parse.c" @@ -5471,4 +5475,3 @@ entry_point(CmdLine *cmdline) lnk_log_end(); scratch_end(scratch); } -