comparison dynload/dynload_syms.c @ 645:6a8aac9b2bcf

- removal of `autovar` macro detection lib: * was a good idea, but never fully pushed through, so code was duplicating most of dyncall_macros.h * didn't find any outside use and plans to make it a standalone lib never materialized * so basically removing code to avoid code duplication that risks to never stay in sync
author Tassilo Philipp
date Mon, 05 Feb 2024 16:43:59 +0100
parents f5577f6bf97a
children
comparison
equal deleted inserted replaced
644:f13444192ceb 645:6a8aac9b2bcf
24 */ 24 */
25 25
26 26
27 27
28 #include "dynload.h" 28 #include "dynload.h"
29 #include "../autovar/autovar_ABI.h" 29 #include "../dyncall/dyncall_macros.h"
30 #if defined(ABI_PE) 30 #if defined(DC__Obj_PE)
31 #include "dynload_syms_pe.c" 31 #include "dynload_syms_pe.c"
32 #elif defined(ABI_Mach) 32 #elif defined(DC__Obj_Mach)
33 #include "dynload_syms_mach-o.c" 33 #include "dynload_syms_mach-o.c"
34 #elif defined(ABI_ELF) 34 #elif defined(DC__Obj_ELF)
35 #include "dynload_syms_elf.c" 35 #include "dynload_syms_elf.c"
36 #endif 36 #endif
37 37