15 lines
285 B
Go
15 lines
285 B
Go
|
// SPDX-FileCopyrightText: 2019 Kent Gibson <warthog618@gmail.com>
|
||
|
//
|
||
|
// SPDX-License-Identifier: MIT
|
||
|
|
||
|
//go:build 386 || amd64
|
||
|
|
||
|
package uapi
|
||
|
|
||
|
import (
|
||
|
"encoding/binary"
|
||
|
)
|
||
|
|
||
|
// endian to use to decode reads from the local kernel.
|
||
|
var nativeEndian binary.ByteOrder = binary.LittleEndian
|