diff options
| author | Feoramund <161657516+Feoramund@users.noreply.github.com> | 2024-06-26 01:18:43 -0400 |
|---|---|---|
| committer | Feoramund <161657516+Feoramund@users.noreply.github.com> | 2024-06-26 10:05:24 -0400 |
| commit | e61d893a749d6219c498152bb53d750a384d13f4 (patch) | |
| tree | 37ab259dc9e08eb43cf193f0b8b2034ad1b9dadf /core/net/common.odin | |
| parent | 10ce76fcc2ce45a28858ca1562e2b802a781ee58 (diff) | |
Port `core:net` to FreeBSD
Diffstat (limited to 'core/net/common.odin')
| -rw-r--r-- | core/net/common.odin | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/net/common.odin b/core/net/common.odin index db969eab8..69fce7d33 100644 --- a/core/net/common.odin +++ b/core/net/common.odin @@ -1,4 +1,4 @@ -// +build windows, linux, darwin +// +build windows, linux, darwin, freebsd package net /* @@ -413,4 +413,4 @@ DNS_Record_Header :: struct #packed { DNS_Host_Entry :: struct { name: string, addr: Address, -}
\ No newline at end of file +} |