From 1c13267ae3ca293d634e34074f2c8c5197062a86 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Tue, 23 Dec 2025 18:27:25 -0500 Subject: Fix for openbsd ifdef --- src/stdlib/stdlib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/stdlib/stdlib.c') diff --git a/src/stdlib/stdlib.c b/src/stdlib/stdlib.c index 023791a2..7b038dac 100644 --- a/src/stdlib/stdlib.c +++ b/src/stdlib/stdlib.c @@ -50,7 +50,7 @@ const char *TOMO_VERSION = "v0"; public Text_t TOMO_VERSION_TEXT = Text("v0"); -#if defined(__linux__) || defined(__APPLE__) || defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD) +#if defined(__linux__) || defined(__APPLE__) || defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) #include static inline const char *get_library_path(void *func) { -- cgit v1.2.3