mirror of
https://github.com/odin-lang/Odin.git
synced 2025-12-28 17:04:34 +00:00
13 lines
215 B
Odin
13 lines
215 B
Odin
#+build !netbsd
|
|
#+build !openbsd
|
|
package flags
|
|
|
|
import "base:runtime"
|
|
import "core:net"
|
|
|
|
Unified_Parse_Error_Reason :: union #shared_nil {
|
|
Parse_Error_Reason,
|
|
runtime.Allocator_Error,
|
|
net.Parse_Endpoint_Error,
|
|
}
|