mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-25 06:25:44 +03:00
10 lines
279 B
Go
10 lines
279 B
Go
//go:build amd64 || 386 || arm || arm64 || mipsle || mips64le || ppc64le
|
|
|
|
// This file is an adapted version of github.com/josharian/native.
|
|
|
|
package aghos
|
|
|
|
import "encoding/binary"
|
|
|
|
// NativeEndian is the native endianness of this system.
|
|
var NativeEndian = binary.LittleEndian
|