diff options
| author | Andreas T Jonsson <mail@andreasjonsson.se> | 2024-06-05 13:47:37 +0200 |
|---|---|---|
| committer | Andreas T Jonsson <mail@andreasjonsson.se> | 2024-06-05 13:47:37 +0200 |
| commit | 6bcc6c9e7338af9f01a9f756cd8abf4c91e12cd0 (patch) | |
| tree | c8ea6dc92335a71465b2bbf9adee66826e403e8d /src/common | |
| parent | b7abe27c51968d0a77f3eaf899de63e4c38bc129 (diff) | |
Added NetBSD support
Diffstat (limited to 'src/common')
| -rw-r--r-- | src/common/util.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/util.odin b/src/common/util.odin index 784a193..9700829 100644 --- a/src/common/util.odin +++ b/src/common/util.odin @@ -76,7 +76,7 @@ resolve_home_dir :: proc( } } -when ODIN_OS == .Darwin || ODIN_OS == .Linux { +when ODIN_OS == .Darwin || ODIN_OS == .Linux || ODIN_OS == .NetBSD { FILE :: struct {} run_executable :: proc( |