aboutsummaryrefslogtreecommitdiff
path: root/core/flags/errors_nonbsd.odin
blob: 28912b57fe45f4597d4f0bc42e72c7271ea7799b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#+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,
}