diff dynload/dynload.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
line wrap: on
line diff
--- a/dynload/dynload.c	Thu Dec 15 10:27:40 2022 +0100
+++ b/dynload/dynload.c	Mon Feb 05 16:43:59 2024 +0100
@@ -24,10 +24,10 @@
 */
 
 
-#include "../autovar/autovar_OSFAMILY.h"
-#if defined(OSFAMILY_Windows)
+#include "../dyncall/dyncall_macros.h"
+#if defined(DC_WINDOWS)
 #  include "dynload_windows.c"
-#elif defined(OSFAMILY_Unix)
+#elif defined(DC_UNIX)
 #  include "dynload_unix.c"
 #endif