mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-17 10:58:29 -07:00
11 lines
260 B
Go
11 lines
260 B
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
|