diff options
| author | Feoramund <161657516+Feoramund@users.noreply.github.com> | 2024-06-15 01:32:28 -0400 |
|---|---|---|
| committer | Feoramund <161657516+Feoramund@users.noreply.github.com> | 2024-06-15 01:32:48 -0400 |
| commit | 51a013fcf142fd7fcfed370bdbaf9de6db19020e (patch) | |
| tree | 57287638715c388ee5e4e64def41a54bcb5c9330 /core/flags/errors_bsd.odin | |
| parent | f28c6c3bbaf3e55c75340125a1244e42c3462385 (diff) | |
Work around BSD lack of `core:net` support
Diffstat (limited to 'core/flags/errors_bsd.odin')
| -rw-r--r-- | core/flags/errors_bsd.odin | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/core/flags/errors_bsd.odin b/core/flags/errors_bsd.odin new file mode 100644 index 000000000..10c04b506 --- /dev/null +++ b/core/flags/errors_bsd.odin @@ -0,0 +1,9 @@ +//+build freebsd, netbsd, openbsd +package flags + +import "base:runtime" + +Unified_Parse_Error_Reason :: union #shared_nil { + Parse_Error_Reason, + runtime.Allocator_Error, +} |