aboutsummaryrefslogtreecommitdiff
path: root/core/flags/errors_nonbsd.odin
blob: e129aff743b524ec2c9d4c5e07b9bb9f51ae11f5 (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,
}