diff options
| author | Andreas T Jonsson <mail@andreasjonsson.se> | 2024-04-19 10:42:09 +0200 |
|---|---|---|
| committer | Andreas T Jonsson <mail@andreasjonsson.se> | 2024-04-19 10:42:09 +0200 |
| commit | dd95a8d11ddf330245ba0f98a3920e4d71e25cde (patch) | |
| tree | 0c5ceeaf516d213fb8a3139bde0e57d9cf341541 /core/c | |
| parent | 07fc07822d0a5c56cdd05b08c318b33aa241479b (diff) | |
More std lib fixes
Just selecting the same codepath as other BSD's for the most part.
Diffstat (limited to 'core/c')
| -rw-r--r-- | core/c/libc/stdio.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/c/libc/stdio.odin b/core/c/libc/stdio.odin index b83ddecc8..f17d3bd06 100644 --- a/core/c/libc/stdio.odin +++ b/core/c/libc/stdio.odin @@ -83,7 +83,7 @@ when ODIN_OS == .Linux { } } -when ODIN_OS == .OpenBSD { +when ODIN_OS == .OpenBSD || ODIN_OS == .NetBSD { fpos_t :: distinct i64 _IOFBF :: 0 |