diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2025-12-23 18:27:25 -0500 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2025-12-23 18:27:25 -0500 |
| commit | 1c13267ae3ca293d634e34074f2c8c5197062a86 (patch) | |
| tree | bf27d80ae11f266e8e2389ab3e2243b16441c7c9 /src | |
| parent | fccd03d7e79fcca9c63fcb122da6a0844d0f9d58 (diff) | |
Fix for openbsd ifdef
Diffstat (limited to 'src')
| -rw-r--r-- | src/stdlib/stdlib.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 <dlfcn.h> static inline const char *get_library_path(void *func) { |
