mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-17 02:48:28 -07:00
67164f89f3
Merge in DNS/adguard-home from fix-some to master Squashed commit of the following: commit 190e9a88d9c0f2bfc597aa61b41dae8b8686158e Author: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Tue Mar 16 20:50:02 2021 +0300 all: add native endianness, imp Makefile
11 lines
225 B
Go
11 lines
225 B
Go
// +build mips mips64
|
|
|
|
// 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.BigEndian
|