comparison 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
comparison
equal deleted inserted replaced
644:f13444192ceb 645:6a8aac9b2bcf
22 OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 22 OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
23 23
24 */ 24 */
25 25
26 26
27 #include "../autovar/autovar_OSFAMILY.h" 27 #include "../dyncall/dyncall_macros.h"
28 #if defined(OSFAMILY_Windows) 28 #if defined(DC_WINDOWS)
29 # include "dynload_windows.c" 29 # include "dynload_windows.c"
30 #elif defined(OSFAMILY_Unix) 30 #elif defined(DC_UNIX)
31 # include "dynload_unix.c" 31 # include "dynload_unix.c"
32 #endif 32 #endif
33 33